/* Global Styles & Variables */
:root {
    --color-primary: #2970ff;
    --color-secondary: #33c2ff;
    --color-accent: #00d0b0;
    --color-dark: #0a1528;
    --color-light: #f5f8fc;
    --color-gray: #64748b;
    --color-gray-light: #e2e8f0;
    --color-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    --gradient-dark: linear-gradient(135deg, var(--color-dark), #1a365d);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 20px rgba(41, 112, 255, 0.1);
    --shadow-lg: 0 20px 30px rgba(41, 112, 255, 0.12);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
    --font-main: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    font-weight: 400;
}

.pld-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.pld-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
}

.pld-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.pld-button-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.pld-button-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--color-white);
}

.pld-button-secondary {
    background-color: rgba(41, 112, 255, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(41, 112, 255, 0.3);
}

.pld-button-secondary:hover {
    background-color: rgba(41, 112, 255, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    color: var(--color-primary);
}

.pld-button-accent {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 8px 15px rgba(0, 208, 176, 0.2);
}

.pld-button-accent:hover {
    box-shadow: 0 12px 20px rgba(0, 208, 176, 0.3);
    transform: translateY(-3px);
    color: var(--color-white);
}

/* Section Styles */
.pld-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pld-section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pld-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.pld-section-header p {
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: var(--color-gray);
    font-size: 1.2rem;
    line-height: 1.7;
}

.pld-left-align {
    text-align: left;
}

.pld-left-align h2:after {
    left: 0;
    transform: none;
}

/* Header & Navigation */
.pld-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pld-header.pld-header-scrolled {
    padding: 15px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pld-company-logo {
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 180px;
    height: 60px;
    transition: all 0.3s ease;
}

.pld-main-nav ul {
    display: flex;
    gap: 40px;
}

.pld-main-nav a {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
}

.pld-main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pld-main-nav a:hover:after,
.pld-main-nav a.pld-active:after {
    transform: scaleX(1);
    transform-origin: left;
}

.pld-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.pld-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
}

/* Page Header */
.pld-page-header {
    background: var(--gradient-dark);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pld-page-header h1 {
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pld-page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pld-header-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23f5f8fc'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23f5f8fc'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f5f8fc'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Contact Section Styles */
.pld-contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.pld-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pld-contact-info {
    padding-right: 20px;
}

.pld-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.pld-contact-card {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pld-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pld-contact-icon {
    margin-right: 20px;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pld-contact-icon img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.pld-contact-card:hover .pld-contact-icon img {
    transform: scale(1.1);
}

.pld-contact-details h3 {
    color: var(--color-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pld-contact-details p {
    color: var(--color-gray);
    margin-bottom: 8px;
    font-size: 1rem;
}

.pld-contact-details p:last-child {
    margin-bottom: 0;
}

.pld-social-media {
    margin-top: 40px;
}

.pld-social-media h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pld-social-icons {
    display: flex;
    gap: 15px;
}

.pld-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pld-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--color-primary);
}

.pld-social-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.pld-social-icon:hover img {
    filter: brightness(10);
}

/* Contact Form Styles */
.pld-contact-form-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    position: relative;
}

.pld-contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.pld-form-header {
    margin-bottom: 30px;
}

.pld-form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.pld-form-header p {
    color: var(--color-gray);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.pld-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pld-form-group {
    margin-bottom: 20px;
    position: relative;
}

.pld-form-group:nth-last-child(2),
.pld-form-group:last-child {
    grid-column: span 2;
}

.pld-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.pld-form-group input,
.pld-form-group select,
.pld-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-dark);
    background-color: var(--color-light);
    transition: all 0.3s ease;
}

.pld-form-group input:focus,
.pld-form-group select:focus,
.pld-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(41, 112, 255, 0.1);
}

.pld-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.pld-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pld-form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.pld-form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.pld-contact-form .pld-button {
    grid-column: span 2;
    margin-top: 10px;
    width: 100%;
}

.pld-form-group input.pld-invalid,
.pld-form-group textarea.pld-invalid {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}

.pld-form-success {
    background-color: rgba(0, 208, 176, 0.1);
    color: var(--color-accent);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Map Section Styles */
.pld-map-section {
    padding: 100px 0;
    background-color: var(--color-light);
    position: relative;
}

.pld-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232970ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.pld-map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.pld-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pld-map-container:hover img {
    transform: scale(1.02);
}

/* FAQ Section Styles */
.pld-faq-section {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.pld-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 112, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

.pld-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pld-faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pld-faq-item:hover {
    box-shadow: var(--shadow-md);
}

.pld-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.pld-faq-question h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    padding-right: 40px;
    transition: all 0.3s ease;
}

.pld-faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pld-faq-toggle::before,
.pld-faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.pld-faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.pld-faq-toggle::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.pld-faq-item.pld-active .pld-faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.pld-faq-item.pld-active .pld-faq-question h3 {
    color: var(--color-primary);
}

.pld-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pld-faq-item.pld-active .pld-faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

.pld-faq-answer p {
    margin-bottom: 10px;
    color: var(--color-gray);
}

.pld-faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA Section Styles */
.pld-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(41, 112, 255, 0.05) 0%, rgba(51, 194, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.pld-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 0;
}

.pld-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    z-index: 0;
}

.pld-cta-section .pld-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.pld-cta-content {
    flex: 1;
    max-width: 600px;
}

.pld-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pld-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-gray);
}

.pld-cta-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pld-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pld-cta-image:hover img {
    transform: scale(1.03);
}

/* Footer Styles */
.pld-footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.pld-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pld-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.pld-footer-logo {
    flex: 1;
    max-width: 350px;
}

.pld-footer-logo p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.pld-footer-links {
    display: flex;
    gap: 60px;
}

.pld-footer-column {
    min-width: 160px;
}

.pld-footer-column h3 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
}

.pld-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.pld-footer-column ul li {
    margin-bottom: 12px;
}

.pld-footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pld-footer-column a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.pld-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pld-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pld-cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .pld-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .pld-contact-info {
        padding-right: 0;
    }
    
    .pld-cta-section .pld-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .pld-cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .pld-cta-content h2 {
        font-size: 2rem;
    }
    
    .pld-cta-content p {
        font-size: 1.1rem;
    }
    
    .pld-contact-form-container::before {
        border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .pld-section-header h2 {
        font-size: 1.8rem;
    }
    
    .pld-page-header {
        padding: 140px 0 80px;
    }
    
    .pld-page-header p {
        font-size: 1.1rem;
    }
    
    .pld-main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .pld-main-nav.pld-active {
        right: 0;
    }
    
    .pld-main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .pld-mobile-menu-toggle {
        display: flex;
    }
    
    .pld-mobile-menu-toggle.pld-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .pld-mobile-menu-toggle.pld-active span:nth-child(2) {
        opacity: 0;
    }
    
    .pld-mobile-menu-toggle.pld-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .pld-contact-form {
        grid-template-columns: 1fr;
    }
    
    .pld-form-group:nth-last-child(2),
    .pld-form-group:last-child {
        grid-column: span 1;
    }
    
    .pld-contact-form .pld-button {
        grid-column: span 1;
    }
    
    .pld-footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .pld-footer-logo {
        max-width: 100%;
    }
    
    .pld-footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .pld-footer-column {
        min-width: 120px;
        flex: 1;
    }
    
    .pld-contact-form-container {
        padding: 30px 20px;
    }
    
    .pld-faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .pld-header {
        padding: 15px 20px;
    }
    
    .pld-company-logo {
        width: 150px;
    }
    
    .pld-section-header p {
        font-size: 1rem;
    }
    
    .pld-contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .pld-contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .pld-contact-details h3 {
        font-size: 1.2rem;
    }
    
    .pld-map-container {
        height: 350px;
    }
    
    .pld-cta-content h2 {
        font-size: 1.8rem;
    }
} 