* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f3ef;
    font-family: 'Inter', sans-serif;
    color: #161616;
    line-height: 1.4;
    overflow-x: hidden;
}

.pd-container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
}


.pd-title-large,
.pd-title,
h2,
.pd-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #161616;
}


a {
    text-decoration: none;
    transition: all 0.25s ease;
}

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ef4823;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: white !important;
    line-height: 1;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.pd-btn-primary i {
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.pd-btn-primary:hover {
    background-color: #d63a17;
}

.pd-btn-primary:hover i {
    transform: translateX(5px) rotate(45deg);
}


.pd-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: #ef4823;
}

.pd-subtitle-white {
    color: #fff;
}

.pd-subtitle-white .pd-subtitle-icon {
    filter: brightness(0) invert(1);
}

.pd-subtitle-icon {
    width: 24px;
    height: 6px;
    object-fit: contain;
}


.pd-tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}


.pd-card,
.pd-block-white {
    background-color: #fff;
    border-radius: 10px;
    padding: 28px;
    transition: 0.2s;
    height: 100%;
}

.pd-card p {
    color: #ccc !important;
}

.pd-card img {
    height: 46px;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 50%;
    background: #ef4823;
    object-fit: contain;
}

.pd-dark-block {
    background-color: #FFFFFF1A;
    backdrop-filter: blur(2px);
    border-radius: 10px;
    padding: 28px;
}


.pd-marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ef4823;
    padding: 16px 0;
    width: 100%;
}

.pd-marquee-content {
    display: inline-block;
    animation: pd-marqueeScroll 48s linear infinite;
}

.pd-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    font-weight: 400;
    font-size: 1.1rem;
    color: white;
    letter-spacing: -0.2px;
    margin-right: 48px;
}

.pd-marquee-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@keyframes pd-marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.pd-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 28px 0;
}

.pd-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pd-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
}

.pd-logo img {
    height: 36px;
    width: auto;
}

.pd-menu {
    display: flex;
    gap: 42px;
    align-items: center;
}

.pd-menu a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.pd-menu a:hover {
    color: #ef4823;
}

.pd-mobile-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .pd-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: #161616;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
        padding: 40px 30px;
    }

    .pd-menu.active {
        right: 0;
    }

    .pd-mobile-toggle {
        display: block;
    }

    .pd-menu a {
        color: white;
        font-size: 1.3rem;
    }

    .pd-close-menu {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }
}


.pd-banner {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0f0f0f;
    padding: 140px 0 100px;
    position: relative;
}

.pd-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pd-banner .pd-subtitle {
    justify-content: center;
}

.pd-banner h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 20px 0 20px;
    letter-spacing: -0.02em;
}

.pd-banner-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.pd-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 40px;
}

.pd-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pd-about-grid,
.pd-why-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.pd-about-left,
.pd-why-left {
    flex: 1;
}

.pd-about-right,
.pd-why-right {
    flex: 1;
}

.pd-about-img img,
.pd-about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.pd-feature-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ef4823;
}

.pd-feature-link i {
    transition: 0.2s;
}

.pd-feature-link:hover i {
    transform: translateX(4px) rotate(45deg);
}

.pd-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pd-why-cards img {
    height: 36px;
    filter: brightness(1) invert(1);
    margin-bottom: 15px;
}

.pd-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

footer {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0a0a0a;
    color: #ccc;
    padding: 60px 0 30px;
}

.pd-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.pd-footer-col {
    flex: 1;
    min-width: 160px;
}

.pd-footer-col h4 {
    text-transform: uppercase;
}

.pd-footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pd-footer-logo img {
    height: 32px;
}

.pd-footer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #aaa;
}

.pd-footer-links a,
.pd-footer-menu a {
    display: block;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 0.9rem;
}

.pd-footer-links a:hover,
.pd-footer-menu a:hover {
    color: #ef4823;
}

.pd-footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pd-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 24px;
    text-align: left;
    font-size: 0.8rem;
    color: #aaa;
}



.pd-page-hero {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0f0f0f;
    padding: 160px 0 80px;
    margin-top: 0;
    position: relative;
}

.pd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: 0.2s;
}

.pd-breadcrumbs a:hover {
    color: #ef4823;
}

.pd-breadcrumbs .pd-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.pd-breadcrumbs .pd-current {
    color: white;
    font-weight: 500;
}

.pd-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}


.pd-contact-section {
    padding: 90px 0;
    background: #f5f3ef;
}

.pd-contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.pd-contact-info {
    flex: 1.1;
    background: white;
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.pd-contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #161616;
}

.pd-info-desc {
    color: #4a4a4a;
    margin-bottom: 42px;
    line-height: 1.5;
}

.pd-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.pd-info-icon {
    width: 52px;
    height: 52px;
    background: #f5f3ef;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-info-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(1) invert(1);
}

.pd-info-content h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #161616;
}

.pd-info-content p,
.pd-info-content a {
    color: #3a3a3a;
    font-weight: 500;
    transition: 0.2s;
}

.pd-info-content a:hover {
    color: #ef4823;
}


.pd-contact-form-side {
    flex: 1.5;
    background: white;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.pd-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pd-form-group {
    flex: 1;
    margin-bottom: 20px;
}

.pd-form-group.full-width {
    width: 100%;
}

.pd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #161616;
}

.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e0db;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: 0.2s;
    background: #fff;
}

.pd-form-group input:focus,
.pd-form-group select:focus,
.pd-form-group textarea:focus {
    outline: none;
    border-color: #ef4823;
    box-shadow: 0 0 0 3px rgba(239, 72, 35, 0.1);
}

.pd-form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.pd-submit-btn {
    background: #ef4823;
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 8px;
}

.pd-submit-btn i {
    transition: transform 0.2s;
}

.pd-submit-btn:hover {
    background: #d63a17;
}

.pd-submit-btn:hover i {
    transform: translateX(5px) rotate(45deg);
}

.pd-thankyou-message {
    margin-top: 24px;
    padding: 14px 20px;
    background: #e8f5e9;
    border-radius: 60px;
    color: #2e7d32;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    width: auto;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .pd-contact-grid {
        flex-direction: column;
    }

    .pd-page-hero h1 {
        font-size: 2.3rem;
    }

    .pd-contact-info,
    .pd-contact-form-side {
        padding: 32px 24px;
    }
}


.pd-page-hero {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0f0f0f;
    padding: 160px 0 80px;
    position: relative;
}

.pd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: 0.2s;
}

.pd-breadcrumbs a:hover {
    color: #ef4823;
}

.pd-breadcrumbs .pd-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.pd-breadcrumbs .pd-current {
    color: white;
    font-weight: 500;
}

.pd-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}


.pd-about-section {
    padding: 90px 0;
    background: #f5f3ef;
}

.pd-about-grid {
    display: flex;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.pd-about-content {
    flex: 1;
}

.pd-about-image {
    flex: 1;
}

.pd-about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}

.pd-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: #ef4823;
}

.pd-subtitle-icon {
    width: 24px;
    height: 6px;
    object-fit: contain;
}

.pd-about-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #161616;
    letter-spacing: -0.02em;
}

.pd-about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #2c2c2c;
    font-size: 1rem;
}

.pd-text-accent {
    font-weight: 600;
    color: #ef4823;
}


.pd-dark-about {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0a0a0a;
    color: white;
}

.pd-dark-about .pd-about-content h2 {
    color: white;
}

.pd-dark-about .pd-about-text p {
    color: rgba(255, 255, 255, 0.85);
}

.pd-dark-about .pd-subtitle {
    color: #ef4823;
}

.pd-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pd-stat-item {
    flex: 1;
    border-left: 3px solid #ef4823;
    padding-left: 20px;
}

.pd-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pd-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .pd-page-hero h1 {
        font-size: 2.3rem;
    }

    .pd-about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .pd-about-content h2 {
        font-size: 1.9rem;
    }

    .pd-stats-row {
        flex-direction: column;
        gap: 24px;
    }
}




.pd-page-hero {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0f0f0f;
    padding: 160px 0 80px;
    position: relative;
}

.pd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: 0.2s;
}

.pd-breadcrumbs a:hover {
    color: #ef4823;
}

.pd-breadcrumbs .pd-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.pd-breadcrumbs .pd-current {
    color: white;
    font-weight: 500;
}

.pd-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}


.pd-capabilities-section {
    padding: 90px 0;
    background: #f5f3ef;
}

.pd-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.pd-section-header .pd-subtitle {
    justify-content: center;
}

.pd-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #161616;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pd-section-desc {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.5;
}


.pd-capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pd-capability-item {
    display: flex;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s;
}

.pd-capability-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.pd-capability-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: #f5f3ef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-capability-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1) invert(1);
}

.pd-capability-content {
    flex: 1;
}

.pd-capability-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #161616;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.pd-capability-desc {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.pd-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.pd-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #2c2c2c;
    background: #f5f3ef;
    padding: 6px 14px;
    border-radius: 40px;
}

.pd-feature-list li i {
    color: #ef4823;
    font-size: 0.75rem;
}


.pd-capability-item.reverse {
    flex-direction: row-reverse;
}


.pd-cta-section {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0a0a0a;
    padding: 90px 0;
    text-align: center;
}

.pd-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.pd-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pd-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.5;
}

.pd-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ef4823;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: white !important;
    transition: 0.2s;
}

.pd-btn-primary i {
    transition: transform 0.2s;
}

.pd-btn-primary:hover {
    background-color: #d63a17;
}

.pd-btn-primary:hover i {
    transform: translateX(5px) rotate(45deg);
}

.pd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: white !important;
    transition: 0.2s;
}

.pd-btn-outline:hover {
    border-color: #ef4823;
    background: rgba(239, 72, 35, 0.1);
}

@media (max-width: 900px) {
    .pd-page-hero h1 {
        font-size: 2.3rem;
    }

    .pd-capability-item {
        flex-direction: column !important;
        text-align: center;
        padding: 30px 24px;
    }

    .pd-capability-icon {
        margin-bottom: 10px;
    }

    .pd-feature-list {
        justify-content: center;
    }

    .pd-section-header h2 {
        font-size: 2rem;
    }

    .pd-cta-content h2 {
        font-size: 2rem;
    }
}



.pd-page-hero {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #0f0f0f;
    padding: 160px 0 60px;
    position: relative;
}

.pd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: 0.2s;
}

.pd-breadcrumbs a:hover {
    color: #ef4823;
}

.pd-breadcrumbs .pd-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.pd-breadcrumbs .pd-current {
    color: white;
    font-weight: 500;
}

.pd-page-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;

    letter-spacing: -0.02em;
}

.pd-update-date {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


.pd-legal-section {
    padding: 70px 0;
    background: #f5f3ef;
}

.pd-legal-content {
    max-width: 980px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 50px 56px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.pd-legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #161616;
    margin: 32px 0 16px;
    letter-spacing: -0.01em;
}

.pd-legal-content h2:first-of-type {
    margin-top: 0;
}

.pd-legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #161616;
    margin: 28px 0 12px;
}

.pd-legal-content p {
    line-height: 1.65;
    color: #2c2c2c;
    margin-bottom: 18px;
    font-size: 1rem;
}

.pd-legal-content ul,
.pd-legal-content ol {
    margin: 16px 0 20px 28px;
    line-height: 1.65;
    color: #2c2c2c;
}

.pd-legal-content li {
    margin-bottom: 10px;
}

.pd-legal-content strong {
    color: #161616;
    font-weight: 700;
}

.pd-legal-divider {
    height: 1px;
    background: #e2e0db;
    margin: 32px 0;
}

.pd-contact-block {
    background: #f5f3ef;
    padding: 24px 28px;
    border-radius: 16px;
    margin: 32px 0 0;
}

.pd-contact-block p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .pd-page-hero h1 {
        font-size: 2rem;
    }

    .pd-legal-content {
        padding: 32px 24px;
    }

    .pd-legal-content h2 {
        font-size: 1.5rem;
    }
}





































@media (max-width: 900px) {

    .pd-features-grid,
    .pd-why-cards,
    .pd-for-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-about-grid,
    .pd-why-grid {
        flex-direction: column;
    }

    .pd-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {

    .pd-features-grid,
    .pd-why-cards,
    .pd-for-grid {
        grid-template-columns: 1fr;
    }

    .pd-info-content p,
    .pd-info-content a {
        font-size: 14px;
        font-weight: 400;
    }

    .pd-about-grid {
        flex-direction: column !important;
        gap: 40px !important;
    }
}

section {
    padding: 80px 0;
}

.pd-dark-section {
    background: url('../img/dark-section.png') center/cover no-repeat;
    background-color: #111;
    color: white;
}

.pd-dark-section .pd-subtitle {
    color: #ef4823;
}

.pd-dark-section h2,
.pd-dark-section .pd-title {
    color: white;
}

.pd-dark-section .pd-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    color: white;
}

.pd-link-arrow {
    color: #ef4823;
}