* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 :root {
     --accent-color: #194ec0;
     --highlight-color: #eb5541;
     --text-dark: #1a1a1a;
     --text-light: #666666;
     --bg-white: #ffffff;
     --bg-light: #f8f9fa;
}
 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
     color: var(--text-dark);
     background-color: var(--bg-white);
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
/* Header & Navigation */
 .header {
     background-color: var(--bg-white);
     position: sticky;
     top: 0;
     z-index: 100;
}
 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
} .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--accent-color);
}
 .logo-link {
     display: inline-flex;
     align-items: center;
     text-decoration: none;
     transition: transform 0.15s ease, opacity 0.15s ease;
}
 .logo-link:hover {
     transform: scale(1.05);
}
 .logo-img {
     height: 40px;
     width: auto;
     max-width: 160px;
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
     justify-content: center;
     align-content: center;
     align-items: center;
}
 .nav-links a {
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.2s ease;
}
 .nav-links a:hover {
     color: var(--accent-color);
}
/* Contact button in nav */
 .nav-links .contact-btn {
     display: inline-block;
     padding: 0.5rem 2.5rem;
     background-color: var(--highlight-color);
     color: white;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.125rem;
     border-radius: 30px;
     transition: background-color 0.2s ease, transform 0.2s ease;
     align-self: flex-start;
     border: none;
     cursor: pointer;
}
 .nav-links .contact-btn:hover {
     transform: translateY(-2px);
     color: white;
}
/* Small-screen nav tweaks */
 @media (max-width: 640px) {
     .nav-links {
         gap: 0.9rem;
    }
     .nav-links .contact-btn {
         padding: 0.4rem 0.7rem;
         border-radius: 8px;
         font-size: 0.95rem;
    }
}
/* Hero Section */
 .hero {
     padding: 4rem 2rem;
     background-color: var(--bg-white);
}
 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
}
 .hero-content {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .hero-tag {
     display: inline-block;
     padding: 0.1rem 0.5rem;
     background-color: var(--highlight-color);
     color: white;
     font-size: 0.875rem;
     font-weight: 600;
     border-radius: 10px;
     align-self: flex-start;
     letter-spacing: 0.05em;
}
 .hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     color: var(--text-dark);
     letter-spacing: -0.02em;
}
 .hero-description {
     font-size: 1.125rem;
     color: var(--text-light);
     line-height: 1.7;
     max-width: 600px;
}
 .btn-primary {
     display: inline-block;
     padding: 0.5rem 2.5rem;
     background-color: var(--accent-color);
     color: white;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.125rem;
     border-radius: 30px;
     transition: background-color 0.2s ease, transform 0.2s ease;
     align-self: flex-start;
     border: none;
     cursor: pointer;
}
 .btn-primary:hover {
     background-color: #3366e6;
     transform: translateY(-2px);
}
 .hero-illustration {
     display: flex;
     justify-content: center;
     align-items: center;
}
 .hero-svg {
     width: 100%;
     max-width: 500px;
     height: auto;
}
/* How It Works Section */
 .how-it-works {
     padding: 6rem 2rem;
     background-color: var(--bg-light);
}
 .how-it-works-container {
     max-width: 1200px;
     margin: 0 auto;
}
 .section-header {
     text-align: center;
     margin-bottom: 4rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
}
 .section-tag {
     display: inline-block;
     padding: 0.1rem 0.5rem;
     background-color: var(--highlight-color);
     color: white;
     font-size: 0.875rem;
     font-weight: 600;
     border-radius: 10px;
     letter-spacing: 0.05em;
     margin-bottom: 1rem;
}
 .section-tag-blue {
     display: inline-block;
     padding: 0.1rem 0.5rem;
     background-color: var(--accent-color);
     color: white;
     font-size: 0.875rem;
     font-weight: 600;
     border-radius: 10px;
     letter-spacing: 0.05em;
     margin-bottom: 1rem;
}
 .section-title {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 1rem;
     letter-spacing: -0.02em;
}
 .section-description {
     font-size: 1.125rem;
     color: var(--text-light);
     line-height: 1.7;
}
 .steps-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
}
 .step-card {
     background-color: var(--bg-white);
     padding: 2.5rem;
     border-radius: 16px;
     border: 1px solid #e5e5e5;
     display: flex;
     flex-direction: column;
}
 .step-illustration {
     width: 100%;
     max-width: 300px;
     margin: 0 auto 2rem;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .step-illustration img {
     width: 100%;
     height: auto;
     max-height: 250px;
     object-fit: contain;
}
 .step-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 1rem;
     line-height: 1.3;
}
 .step-description {
     font-size: 1rem;
     color: var(--text-light);
     line-height: 1.7;
}
/* Who We Are Section */
 .who-we-are {
     padding: 6rem 2rem;
     background-color: var(--bg-white);
}
 .who-we-are-container {
     max-width: 900px;
     margin: 0 auto;
}
 .who-we-are-content {
     display: flex;
     flex-direction: column;
     gap: 3rem;
}
 .who-we-are-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto;
}
 .who-we-are-intro {
     font-size: 1.5rem;
     color: var(--text-dark);
     line-height: 1.6;
     font-weight: 600;
     margin-bottom: 1.5rem;
}
 .who-we-are-description {
     font-size: 1.125rem;
     color: var(--text-light);
     line-height: 1.8;
     margin-bottom: 1.5rem;
}
 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin: 3rem 0;
}
 .feature-item {
     text-align: center;
     padding: 2rem;
}
 .feature-item-icon {
     width: 48px;
     height: 48px;
     background-color: var(--highlight-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: bold;
     margin: 0 auto 1.5rem;
}
 .feature-item-text {
     font-size: 1rem;
     color: var(--text-dark);
     line-height: 1.6;
}
 .who-we-are-cta {
     text-align: center;
     font-size: 1.25rem;
     color: var(--text-dark);
     line-height: 1.8;
     font-weight: 600;
     padding-top: 2rem;
     border-top: 1px solid #e5e5e5;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .nav-links .contact-btn {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        align-self: auto;
    }

    .nav {
        position: relative;
    }
}

/* About Page */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-mission {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.about-mission .about-section {
    margin-bottom: 2rem;
}

.about-mission h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-mission p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-values {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .about-mission {
        padding: 2rem 1rem;
    }

    .about-values {
        padding: 2rem 1rem;
    }

    .about-stats {
        padding: 2rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-mission h2 {
        font-size: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .how-it-works {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem;
    }

    .who-we-are {
        padding: 4rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
     .who-we-are-intro {
         font-size: 1.25rem;
    }
     .who-we-are-description {
         font-size: 1rem;
    }
     .who-we-are-cta {
         font-size: 1.125rem;
    }
}

/* Responsive for larger tablets */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-tag {
        align-self: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .btn-primary {
        align-self: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .how-it-works {
        padding: 4rem 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .who-we-are {
        padding: 4rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Why Choose Us Section */
 .why-choose-us {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, var(--accent-color) 0%, #1a3fa0 100%);
     position: relative;
     overflow: hidden;
}
 .why-choose-us::before {
     content: '';
     position: absolute;
     top: -30%;
     right: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     animation: float 8s ease-in-out infinite;
}
 .why-choose-us::after {
     content: '';
     position: absolute;
     bottom: -20%;
     left: -5%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(235, 85, 65, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     animation: float 10s ease-in-out infinite reverse;
}
 @keyframes float {
     0%, 100% {
         transform: translateY(0px);
    }
     50% {
         transform: translateY(30px);
    }
}
 .why-choose-us-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
}
 .why-choose-us .section-header {
     color: white;
     margin-bottom: 4rem;
}
 .why-choose-us .section-title {
     color: white;
     font-size: 2.5rem;
}
 .why-choose-us .section-description {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1.125rem;
}
 .features-showcase {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
     margin: 3rem 0;
}
 .feature-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.6);
     padding: 2.5rem;
     border-radius: 16px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
     transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
     position: relative;
     overflow: hidden;
     perspective: 1000px;
     animation: fadeInUp 0.6s ease-out both;
}
 .feature-card-icon {
     font-size: 2.8rem;
     color: var(--accent-color);
     margin-bottom: 1.5rem;
     position: relative;
     z-index: 1;
     display: inline-block;
     transition: all 0.4s ease;
}
 .feature-card-icon img {
     display: block;
     width: 56px;
     height: 56px;
     object-fit: contain;
     margin-bottom: 1rem;
}
 .feature-card-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 1rem;
     position: relative;
     z-index: 1;
     line-height: 1.3;
}
 .feature-card-description {
     color: var(--text-light);
     font-size: 0.95rem;
     line-height: 1.8;
     position: relative;
     z-index: 1;
}
 .why-us-cta {
     display: flex;
     justify-content: center;
     margin-top: 3rem;
     position: relative;
     z-index: 1;
}
 .why-us-cta .btn-primary {
     background-color: var(--highlight-color);
}
 .why-us-cta .btn-primary:hover {
     background-color: #ff6b4f;
}
/* Creative extras */
 .why-illustration {
     position: absolute;
     top: 40px;
     right: 40px;
     width: 420px;
     height: 260px;
     opacity: 0.18;
     pointer-events: none;
     transform: translateZ(0);
     animation: float 12s ease-in-out infinite;
}
 .feature-badge {
     position: absolute;
     top: 14px;
     right: 16px;
     background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
     color: var(--accent-color);
     font-weight: 700;
     font-size: 0.75rem;
     padding: 0.35rem 0.6rem;
     border-radius: 999px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.08);
     z-index: 3;
}
 .feature-card-title::after {
     content: '';
     display: block;
     width: 48px;
     height: 3px;
     margin-top: 10px;
     background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
     border-radius: 2px;
     transform-origin: left center;
     transition: transform 0.35s cubic-bezier(.2,.9,.2,1);
}
 .feature-card:hover .feature-card-title::after {
     transform: scaleX(1.8);
}
/* Responsive: Why Choose Us */
 @media (max-width: 768px) {
     .why-choose-us {
         padding: 4rem 1rem;
    }
     .features-showcase {
         grid-template-columns: 1fr;
         gap: 1.5rem;
    }
     .feature-card {
         padding: 2rem;
    }
     .feature-card-icon {
         font-size: 2.2rem;
    }
     .feature-card-title {
         font-size: 1.1rem;
    }
     .why-choose-us .section-title {
         font-size: 2rem;
    }
     .why-choose-us .section-description {
         font-size: 1rem;
    }
}
/* Partners section */
 .partners {
     padding: 4rem 2rem;
     background-color: var(--bg-white);
}
 .partners-container {
     max-width: 1100px;
     margin: 0 auto;
}
 .partners .section-header {
     text-align: center;
     margin-bottom: 2.5rem;
}
 .partners-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
     gap: 1.5rem 2.5rem;
     align-items: center;
     justify-items: center;
     padding: 1rem 2rem;
}
 .partner-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     max-width: 220px;
     transition: transform 0.18s ease, opacity 0.18s ease;
}
 .partner-logo img {
     width: 100%;
     height: auto;
     max-height: 56px;
     object-fit: contain;
     opacity: 0.92;
     filter: grayscale(0%);
}
 .partner-logo:hover {
     transform: translateY(-6px) scale(1.02);
     opacity: 1;
}
 @media (max-width: 640px) {
     .partners {
         padding: 2rem 1rem;
    }
     .partners-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1rem;
    }
}
/* Open Positions / Jobs */
 .open-positions {
     padding: 4rem 2rem;
     background-color: var(--bg-light);
}
 .open-positions-container {
     max-width: 1100px;
     margin: 0 auto;
}
 .open-positions .section-header {
     text-align: center;
     margin-bottom: 2rem;
}
 .jobs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 1.5rem;
     align-items: start;
}
 .job-card {
     background: var(--bg-white);
     border: 1px solid #e9e9e9;
     padding: 1.75rem;
     border-radius: 12px;
     box-shadow: 0 6px 20px rgba(31,41,55,0.04);
     transition: transform 0.18s ease, box-shadow 0.18s ease;
}
 .job-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 36px rgba(31,41,55,0.07);
}
 .job-title {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 0.25rem;
}
 .job-subtitle {
     color: var(--text-light);
     margin-bottom: 0.8rem;
     font-weight: 600;
}
 .job-card h4 {
     margin-top: 0.8rem;
     margin-bottom: 0.4rem;
     font-size: 1rem;
     color: var(--text-dark);
}
 .requirements {
     margin: 0.25rem 0 1rem 1.25rem;
     color: var(--text-light);
}
 .job-salary {
     font-weight: 700;
     margin-top: 0.75rem;
}
 .job-salary .muted {
     font-weight: 400;
     color: var(--text-light);
     margin-left: 0.5rem;
     font-size: 0.95rem;
}
 .job-card .btn-primary {
     margin-top: 1rem;
}
 @media (max-width: 640px) {
     .open-positions {
         padding: 2rem 1rem;
    }
     .jobs-grid {
         grid-template-columns: 1fr;
         gap: 1rem;
    }
}
/* Testimonials */
 .testimonials {
     padding: 4rem 2rem;
     background-color: #fff;
}
 .testimonials-container {
     max-width: 1100px;
     margin: 0 auto;
}
 .testimonials .section-header {
     text-align: center;
     margin-bottom: 1.5rem;
}
 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 1.25rem;
     align-items: stretch;
}
 .testimonial-card {
     background: linear-gradient(180deg, rgba(245,247,250,1), rgba(255,255,255,1));
     border: 1px solid #eef2f6;
     padding: 1.25rem;
     border-radius: 12px;
     box-shadow: 0 6px 18px rgba(31,41,55,0.04);
}
 .testimonial-top {
     display: flex;
     gap: 0.9rem;
     align-items: flex-start;
}
 .avatar {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
     color: #fff;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1rem;
     flex-shrink: 0;
}
 .avatar img {
     width: 56px;
     height: 56px;
     border-radius: 50%;
}
 .testimonial-text {
     color: var(--text-dark);
     font-size: 0.98rem;
     line-height: 1.5;
     margin-bottom: 0.6rem;
}
 .testimonial-author {
     display: block;
     margin-top: 0.25rem;
     font-weight: 700;
     color: var(--text-light);
}
 @media (max-width: 640px) {
     .testimonials {
         padding: 2rem 1rem;
    }
     .testimonial-top {
         gap: 0.6rem;
    }
}
/* Apply / Contact Form */
 .apply-section {
     padding: 3.5rem 2rem;
     background: var(--highlight-color);
     color: white;
}
 .apply-container {
     max-width: 900px;
     margin: 0 auto;
}
 .apply-section .section-header {
     text-align: center;
     margin-bottom: 1.25rem;
}
 .apply-form {
     background: #ffffff;
     color: var(--text-dark);
     padding: 1.25rem;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(21,32,64,0.12);
}
 .apply-form .form-row {
     margin-bottom: 0.9rem;
     margin-top: 0.9rem;
     display: flex;
     flex-direction: column;
}
 .apply-form label {
     font-weight: 700;
     margin-bottom: 0.35rem;
     color: var(--text-dark);
}
 .apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="tel"], .apply-form select, .apply-form textarea, .apply-form input[type="file"] {
     padding: 0.6rem 0.75rem;
     border: 1px solid #e6e9ef;
     border-radius: 8px;
     font-size: 0.98rem;
     color: var(--text-dark);
     background: #fff;
}
 .apply-form textarea {
     resize: vertical;
     min-height: 96px;
}
 .form-note {
     font-size: 0.9rem;
     color: #6b7280;
     margin-top: 0.25rem;
}
 .form-actions {
     display: flex;
     justify-content: flex-end;
}
 .apply-section .btn-primary {
     background-color: var(--accent-color);
}
 .apply-section .btn-primary:hover {
     background-color: #356ed6;
}
 @media (max-width: 640px) {
     .apply-section {
         padding: 2rem 1rem;
    }
     .form-actions {
         justify-content: center;
    }
}
/* Footer */
 .site-footer {
     background: #ffffff;
     border-top: 1px solid #e9e9e9;
     color: var(--text-dark);
     padding: 2.25rem 1rem 1rem;
}
 .site-footer-container {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 1.5rem;
     align-items: start;
}
 .site-footer h4 {
     margin-bottom: 0.5rem;
     font-size: 1rem;
}
 .site-footer .small {
     color: var(--text-light);
     font-size: 0.95rem;
}
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
}
 .footer-links li {
     margin-bottom: 0.45rem;
}
 .footer-links a {
     color: var(--text-light);
     text-decoration: none;
     transition: color 0.15s ease;
}
 .footer-links a:hover {
     color: var(--accent-color);
}
 .footer-contact-col address {
     font-style: normal;
     color: var(--text-light);
     line-height: 1.5;
}
 .footer-contact-col a {
     color: var(--text-dark);
     text-decoration: none;
}
 .company-reg {
     margin-top: 0.75rem;
     color: var(--text-light);
     font-size: 0.95rem;
}
 .site-footer-bottom {
     max-width: 1100px;
     margin: 1rem auto 0;
     padding-top: 0.75rem;
     border-top: 1px solid #f1f3f5;
     text-align: center;
     color: var(--text-light);
     font-size: 0.95rem;
}
 @media (max-width: 768px) {
     .site-footer-container {
         grid-template-columns: 1fr;
         gap: 1rem;
    }
     .site-footer {
         padding: 1.5rem 0.75rem;
    }
}

/* Contact Page */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.info-card a:hover {
    color: var(--highlight-color);
}

.contact-form-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form .form-row {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(25, 78, 192, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form .form-actions {
    justify-content: center;
}

.contact-form .btn-primary {
    width: 100%;
    max-width: 200px;
}

@media (max-width: 640px) {
    .contact-info {
        padding: 2rem 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Policy Pages (Privacy, Terms, etc) */
.policy-content {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text {
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.policy-text ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.policy-text li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.policy-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-text a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .policy-content {
        padding: 2rem 1rem;
    }

    .policy-text h2 {
        font-size: 1.25rem;
    }

    .policy-text h3 {
        font-size: 1.05rem;
    }
}

