:root {
    --perp-bg-primary: #ffff;
    --perp-bg-secondary: #dbf1c3;
    --perp-bg-blocks: #f8f6f9;
    --perp-subtitle: #ff8565;
    --perp-headings: #111013;
    --perp-text: #111;
    --perp-btn-bg: #000;
    --perp-btn-color: #37ea9e;
    --perp-accent: #ff8565;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrap {
    max-width: 1600px;
    width: 98%;
    margin: 15px auto;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background-color: var(--perp-bg-primary);
    border: 1px solid #ddd;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--perp-text);
    background-color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--perp-headings);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.perp_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.perp_btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--perp-btn-bg);
    color: #fff;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.perp_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.perp_subtitle {
    color: var(--perp-subtitle);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.perp_header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.perp_header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perp_logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--perp-headings);
    display: flex;
    align-items: center;
}

.perp_logo img {
    width: 36px;
    margin-right: 8px;
    margin-top: -2px;
}

.perp_nav {
    display: flex;
    align-items: center;
}

.perp_menu {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.perp_menu-item {
    margin-left: 30px;
}

.perp_menu-link {
    font-weight: 500;
    position: relative;
}

.perp_menu-link:hover {
    color: var(--perp-subtitle);
}

.perp_menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--perp-subtitle);
    transition: width 0.3s ease;
}

.perp_menu-link:hover::after {
    width: 100%;
}

.perp_mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.perp_banner {
    padding: 180px 0 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%), url('../imgs/bg.png') center no-repeat;
    background-size: cover;
}

.perp_banner-title {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.perp_banner-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.perp_banner-btn {
    animation: fadeInUp 1s ease 0.4s both;
}

.perp_banner-img {
    margin-top: 60px;
    max-width: 100%;
    margin-bottom: -6px;
}


.perp_features {
    padding: 100px 0;
    background-color: var(--perp-bg-primary);
}

.perp_section-title {
    font-size: 32px;
    margin-bottom: 50px;
}

.perp_features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.perp_feature-card {
    background-color: var(--perp-bg-blocks);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.perp_feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.perp_feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--perp-subtitle);
}

.perp_feature-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}


.perp_about {
    padding: 100px 0;
    background: var(--perp-bg-secondary) url('../imgs/bg.png') center no-repeat;

}

.perp_about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.perp_about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.perp_about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.perp_about-content {
    flex: 1;
}

.perp_about-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.perp_about-text {
    margin-bottom: 30px;
}


.perp_capabilities {
    padding: 100px 0;
    background-color: var(--perp-bg-primary);
}

.perp_capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.perp_capability-card {
    background-color: var(--perp-bg-blocks);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.perp_capability-card img {
    margin-top: 20px;
    display: inline-block;
}

.perp_capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.perp_capability-card:last-child {
    grid-column: 2;
    grid-row: 1 / span 3;
    background-color: var(--perp-accent);
    color: white;
}

.perp_capability-card:last-child h3 {
    color: white;
}

.perp_capability-card p{
    line-height: 1.4;
}

.perp_capability-title {
    font-size: 20px;
    margin-bottom: 5px;
}


.perp_cta {
    padding: 100px 0;
    background: var(--perp-headings) url('../imgs/bg.png') center no-repeat;
    color: white;
    text-align: center;
    max-width: 98%;
    width: 100%;
    border-radius: 20px;
    margin: 15px auto;
}

.perp_cta .perp_subtitle {
    color: var(--perp-btn-color);
}

.perp_cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.perp_cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
}

.perp_cta-btn {
    background-color: #fff;
    color: #000;
}


.perp_testimonials {
    padding: 70px 0;
    background-color: var(--perp-bg-secondary);
}

.perp_testimonials h2 {
    margin-bottom: 30px;
}

.perp_testimonials-slider {
    margin: 0 -15px;
}

.perp_testimonial-card {
    background-color: var(--perp-bg-primary);
    padding: 30px;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.perp_testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.perp_testimonial-avatar {
    line-height: 0;

    margin-right: 15px;
}

.perp_testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.perp_testimonial-info {
    flex: 1;
}

.perp_testimonial-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.perp_testimonial-role {
    font-size: 14px;
    color: var(--perp-subtitle);
}

.perp_testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}


.perp_blog {
    padding: 100px 0;
    background-color: var(--perp-bg-primary);
}

.perp_blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.perp_blog-card {
    background-color: var(--perp-bg-blocks);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.perp_blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.perp_blog-img {
    line-height: 0;
}

.perp_blog-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.perp_blog-content {
    padding: 20px;
}

.perp_blog-date {
    font-size: 14px;
    color: var(--perp-subtitle);
    margin-bottom: 10px;
}

.perp_blog-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.perp_blog-excerpt {
    margin-bottom: 15px;
    font-size: 14px;
}

.perp_blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.perp_blog-tag {
    background-color: var(--perp-bg-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}


.perp_footer {
    padding: 80px 0 30px;
    background-color: var(--perp-headings);
    color: rgba(255, 255, 255, 0.7);
}

.perp_footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.perp_footer-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.perp_footer-logo img {
    width: 36px;
    margin-right: 8px;
    margin-top: -2px;
}

.perp_footer-contact {
    margin-bottom: 20px;
}

.perp_footer-contact p {
    margin-bottom: 7px;
}

.perp_footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.perp_footer-links ul {
    list-style: none;
}

.perp_footer-links li {
    margin-bottom: 10px;
}

.perp_footer-links a:hover {
    color: var(--perp-btn-color);
}

.perp_footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.perp_cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--perp-bg-blocks);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 1001;
    display: none;
}

.perp_cookie-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.perp_cookie-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.perp_cookie-buttons {
    display: flex;
    gap: 10px;
}

.perp_cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.perp_cookie-accept {
    background-color: var(--perp-btn-bg);
    color: #fff;
}

.perp_cookie-decline {
    background-color: transparent;
    color: var(--perp-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.perp_about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%);
}

.perp_about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.perp_about-hero-content {
    flex: 1;
}

.perp_about-hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.perp_about-hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.perp_about-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.perp_stat {
    text-align: center;
}

.perp_stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--perp-subtitle);
    margin-bottom: 5px;
}

.perp_stat-label {
    font-size: 14px;
    color: var(--perp-text);
}

.perp_about-hero-visual {
    flex: 1;
    line-height: 0;
}

.perp_about-hero-visual img {
    max-width: 500px;
    width: 100%;
}

.perp_visual-element {
    position: absolute;
    border-radius: 10px;
    background: var(--perp-bg-blocks);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.perp_visual-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.perp_visual-2 {
    width: 150px;
    height: 150px;
    top: 50px;
    right: 0;
    animation: float 6s ease-in-out infinite 2s;
}

.perp_visual-3 {
    width: 180px;
    height: 180px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite 4s;
}

.perp_our-story {
    padding: 100px 0;
    background-color: var(--perp-bg-primary);
}

.perp_our-story-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.perp_our-story-content {
    flex: 1;
}

.perp_our-story-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.perp_our-story-text p {
    margin-bottom: 20px;
}

.perp_our-story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.perp_story-feature {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: var(--perp-bg-blocks);
    transition: all 0.3s ease;
}

.perp_story-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.perp_story-feature i {
    font-size: 32px;
    color: var(--perp-subtitle);
    margin-bottom: 15px;
}

.perp_story-feature h4 {
    margin-bottom: 10px;
}

.perp_our-story-visual {
    flex: 1;
}

.perp_timeline {
    position: relative;
    padding-left: 30px;
}

.perp_timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--perp-subtitle);
}

.perp_timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.perp_timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--perp-subtitle);
    border: 3px solid var(--perp-bg-primary);
}

.perp_timeline-year {
    font-weight: 700;
    color: var(--perp-subtitle);
    margin-bottom: 10px;
}

.perp_timeline-content h4 {
    margin-bottom: 5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {

    .perp_about-hero-inner,
    .perp_our-story-inner {
        flex-direction: column;
    }

    .perp_about-stats {
        justify-content: space-between;
    }

    .perp_our-story-features {
        grid-template-columns: 1fr;
    }
}



.perp_services-overview {
    padding: 180px 0 100px;
    background: var(--perp-bg-primary);
}

.perp_services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.perp_services-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.perp_services-intro {
    font-size: 18px;
    color: var(--perp-text);
}

.perp_services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.perp_service-category {
    background: var(--perp-bg-blocks);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.perp_service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--perp-subtitle);
}

.perp_service-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 20px;
    background: var(--perp-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perp_service-icon i {
    font-size: 32px;
    color: var(--perp-subtitle);
}

.perp_service-category h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.perp_service-features {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.perp_service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 20px;
}

.perp_service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--perp-subtitle);
    font-weight: bold;
}

.perp_how-it-works {
    padding: 100px 0;
    background: var(--perp-bg-secondary);
}

.perp_how-it-works-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.perp_process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.perp_process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.perp_process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.perp_process-step:nth-child(even) .perp_step-content {
    text-align: right;
    margin-right: 30px;
    margin-left: 0;
}

.perp_step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--perp-subtitle);
    background: var(--perp-bg-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.perp_step-content {
    flex: 1;
    margin-left: 30px;
}

.perp_step-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.perp_step-visual {
    width: 100px;
    height: 100px;
    background: var(--perp-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perp_step-visual i {
    font-size: 40px;
    color: var(--perp-subtitle);
}

@media (max-width: 992px) {
    .perp_services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .perp_services-grid {
        grid-template-columns: 1fr;
    }

    .perp_process-step,
    .perp_process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .perp_step-content {
        margin: 20px 0;
        text-align: center;
    }

    .perp_process-step:nth-child(even) .perp_step-content {
        text-align: center;
        margin: 20px 0;
    }
}

.perp_contact-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%);
    text-align: center;
}

.perp_contact-hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.perp_contact-hero-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.perp_contact-main {
    padding: 100px 0;
    background: var(--perp-bg-primary);
}

.perp_contact-main-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.perp_contact-form-section {
    background: var(--perp-bg-blocks);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.perp_contact-form-title {
    margin-bottom: 30px;
    font-size: 28px;
}

.perp_contact-form {
    width: 100%;
}

.perp_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.perp_form-group {
    margin-bottom: 20px;
}

.perp_form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--perp-headings);
}

.perp_form-group input,
.perp_form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--perp-bg-primary);
}

.perp_form-group input:focus,
.perp_form-group textarea:focus {
    outline: none;
    border-color: var(--perp-subtitle);
    box-shadow: 0 0 0 3px rgba(255, 133, 101, 0.1);
}

.perp_contact-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.perp_btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.perp_contact-success {
    text-align: center;
    padding: 40px 20px;
    background: var(--perp-bg-secondary);
    border-radius: 8px;
    margin-top: 20px;
}

.perp_success-icon {
    font-size: 48px;
    color: var(--perp-subtitle);
    margin-bottom: 20px;
}

.perp_contact-success h3 {
    margin-bottom: 10px;
    color: var(--perp-headings);
}

.perp_contact-info-section {
    position: sticky;
    top: 100px;
}

.perp_contact-info-card {
    background: var(--perp-bg-blocks);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.perp_contact-info-title {
    margin-bottom: 10px;
    font-size: 28px;
}

.perp_contact-info-desc {
    margin-bottom: 30px;
    color: var(--perp-text);
}

.perp_contact-info-items {
    margin-bottom: 40px;
}

.perp_contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.perp_contact-icon {
    width: 50px;
    height: 50px;
    background: var(--perp-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.perp_contact-icon i {
    font-size: 20px;
    color: var(--perp-subtitle);
}

.perp_contact-details h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.perp_contact-details a {
    color: var(--perp-text);
    transition: color 0.3s ease;
}

.perp_contact-details a:hover {
    color: var(--perp-subtitle);
}

.perp_contact-hours h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.perp_hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.perp_hours-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .perp_contact-main-inner {
        grid-template-columns: 1fr;
    }

    .perp_contact-info-section {
        position: static;
    }

    .perp_form-row {
        grid-template-columns: 1fr;
    }

    .perp_contact-form-section,
    .perp_contact-info-card {
        padding: 30px 20px;
    }
}

.perp_policy-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%);
}

.perp_policy-title {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
}

.perp_policy-subtitle {
    text-align: center;
    color: var(--perp-subtitle);
    font-weight: 600;
    margin-bottom: 20px;
}

.perp_policy-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.perp_policy-content {
    padding: 80px 0;
    background: var(--perp-bg-primary);
}

.perp_policy-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.perp_policy-nav {
    position: sticky;
    top: 120px;
    background: var(--perp-bg-blocks);
    padding: 30px;
    border-radius: 8px;
}

.perp_policy-nav h4 {
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_policy-nav-list {
    list-style: none;
}

.perp_policy-nav-list li {
    margin-bottom: 12px;
}

.perp_policy-nav-list a {
    color: var(--perp-text);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.perp_policy-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--perp-subtitle);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.perp_policy-nav-list a:hover {
    color: var(--perp-subtitle);
}

.perp_policy-articles {
    max-width: 800px;
}

.perp_policy-article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.perp_policy-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.perp_policy-article h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_policy-section {
    margin-bottom: 30px;
}

.perp_policy-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--perp-headings);
}

.perp_policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.perp_policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}



.perp_contact-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.perp_contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 768px) {
    .perp_policy-main {
        grid-template-columns: 1fr;
    }
    
    .perp_policy-nav {
        position: static;
        margin-bottom: 40px;
    }
    
    .perp_policy-title {
        font-size: 36px;
    }
}

.perp_terms-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%);
}

.perp_terms-title {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
}

.perp_terms-subtitle {
    text-align: center;
    color: var(--perp-subtitle);
    font-weight: 600;
    margin-bottom: 20px;
}

.perp_terms-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.perp_terms-content {
    padding: 80px 0;
    background: var(--perp-bg-primary);
}

.perp_terms-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.perp_terms-nav {
    position: sticky;
    top: 120px;
    background: var(--perp-bg-blocks);
    padding: 30px;
    border-radius: 8px;
}

.perp_terms-nav h4 {
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_terms-nav-list {
    list-style: none;
}

.perp_terms-nav-list li {
    margin-bottom: 12px;
}

.perp_terms-nav-list a {
    color: var(--perp-text);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.perp_terms-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--perp-subtitle);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.perp_terms-nav-list a:hover {
    color: var(--perp-subtitle);
}

.perp_terms-articles {
    max-width: 800px;
}

.perp_terms-article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.perp_terms-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.perp_terms-article h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_terms-section {
    margin-bottom: 30px;
}

.perp_terms-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--perp-headings);
}

.perp_terms-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.perp_terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .perp_terms-main {
        grid-template-columns: 1fr;
    }
    
    .perp_terms-nav {
        position: static;
        margin-bottom: 40px;
    }
    
    .perp_terms-title {
        font-size: 36px;
    }
}



.perp_cookies-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--perp-bg-primary) 0%, var(--perp-bg-secondary) 100%);
}

.perp_cookies-title {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
}

.perp_cookies-subtitle {
    text-align: center;
    color: var(--perp-subtitle);
    font-weight: 600;
    margin-bottom: 20px;
}

.perp_cookies-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.perp_cookies-content {
    padding: 80px 0;
    background: var(--perp-bg-primary);
}

.perp_cookies-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.perp_cookies-nav {
    position: sticky;
    top: 120px;
    background: var(--perp-bg-blocks);
    padding: 30px;
    border-radius: 8px;
}

.perp_cookies-nav h4 {
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_cookies-nav-list {
    list-style: none;
}

.perp_cookies-nav-list li {
    margin-bottom: 12px;
}

.perp_cookies-nav-list a {
    color: var(--perp-text);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.perp_cookies-nav-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--perp-subtitle);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.perp_cookies-nav-list a:hover {
    color: var(--perp-subtitle);
}

.perp_cookies-articles {
    max-width: 800px;
}

.perp_cookies-article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.perp_cookies-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.perp_cookies-article h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--perp-headings);
}

.perp_cookies-section {
    margin-bottom: 30px;
}

.perp_cookies-section p{
    margin-bottom: 15px;
}

.list{
    padding-left: 20px;
    margin-bottom: 20px;
}

.perp_cookies-article p{
    margin-bottom: 15px;
}

.perp_policy-section p, .perp_policy-article p{
    margin-bottom: 15px;
}

.perp_cookies-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--perp-headings);
}

.perp_cookies-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.perp_cookies-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.perp_cookies-table {
    background: var(--perp-bg-blocks);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.perp_table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: var(--perp-subtitle);
    color: white;
    font-weight: 600;
}

.perp_table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.perp_table-row:last-child {
    border-bottom: none;
}

.perp_table-cell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.perp_table-header .perp_table-cell {
    padding: 20px;
}

.perp_cookies-notice {
    background: var(--perp-bg-secondary);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--perp-subtitle);
}

@media (max-width: 768px) {
    .perp_cookies-main {
        grid-template-columns: 1fr;
    }
    
    .perp_cookies-nav {
        position: static;
        margin-bottom: 40px;
    }
    
    .perp_cookies-title {
        font-size: 36px;
    }
    
    .perp_table-header,
    .perp_table-row {
        grid-template-columns: 1fr;
    }
}











































@media (max-width: 992px) {
    .perp_features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .perp_about-inner {
        flex-direction: column;
    }

    .perp_capabilities-grid {
        grid-template-columns: 1fr;
    }

    .perp_capability-card:last-child {
        grid-column: 1;
        grid-row: auto;
    }

    .perp_blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .perp_footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .perp_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--perp-bg-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .perp_menu.active {
        display: flex;
    }

    .perp_menu-item {
        margin: 10px 0;
    }

    .perp_mobile-toggle {
        display: block;
    }

    .perp_banner-title {
        font-size: 36px;
    }

    .perp_features-grid {
        grid-template-columns: 1fr;
    }

    .perp_blog-grid {
        grid-template-columns: 1fr;
    }

    .perp_footer-top {
        grid-template-columns: 1fr;
    }

    .perp_cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .perp_header-inner .perp_btn {
        font-size: 14px;
        margin-right: 15px;
        padding: 10px 20px;
    }

    .perp_about {
        padding: 70px 0;
    }

    .perp_footer-top {
        gap: 25px;
    }

    .perp_logo{
        font-size: 20px;
    }
    .perp_logo img{
        width: 30px;
        margin-right: 5px;
    }
    .perp_about-stats{
        gap: 12px;
    }
    .perp_stat-number{
        font-size: 30px;
    }
}

