* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2c5282;
    --color-secondary: #4a90e2;
    --color-accent: #38b2ac;
    --color-dark: #1a202c;
    --color-gray: #4a5568;
    --color-light-gray: #e2e8f0;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #cbd5e0;
    --color-success: #48bb78;
    --color-text: #2d3748;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.ad-disclosure {
    background: var(--color-light-gray);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--color-gray);
    margin-left: auto;
}

.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    background: var(--color-bg-alt);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-gray);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background: var(--color-light-gray);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-cards {
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 18px;
    color: var(--color-gray);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    background: var(--color-light-gray);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--color-gray);
    line-height: 1.8;
}

.value-proposition {
    background: var(--color-primary);
    color: white;
    padding: 100px 0;
}

.value-proposition .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.value-content {
    flex: 2;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.value-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.value-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.text-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.text-link:hover {
    opacity: 0.8;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    color: var(--color-gray);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.submit-button {
    width: 100%;
    background: var(--color-primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 0;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 60px;
}

.testimonials {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-dark);
}

.main-footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
    cursor: pointer;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-success);
    color: white;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header {
    background: var(--color-bg-alt);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--color-gray);
}

.services-overview {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.service-header {
    display: flex;
    align-items: stretch;
}

.service-image {
    flex: 1;
    background: var(--color-light-gray);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title-block {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg-alt);
}

.service-title-block h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.service-body {
    padding: 40px;
}

.service-body p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-text);
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 20px;
}

.services-cta {
    background: var(--color-bg-alt);
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-story {
    padding: 80px 0;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background: var(--color-light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--color-gray);
    line-height: 1.8;
}

.experience-section {
    padding: 80px 0;
}

.experience-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.experience-section .section-intro {
    margin-bottom: 50px;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sector-item {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--color-bg-alt);
    padding: 30px;
    border-radius: 8px;
}

.sector-item h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.sector-item p {
    color: var(--color-gray);
    line-height: 1.7;
}

.cta-section {
    background: var(--color-accent);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: var(--color-accent);
}

.cta-section .cta-button:hover {
    background: var(--color-bg-alt);
}

.contact-details {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
}

.contact-card {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-note {
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

.hours-list {
    text-align: left;
}

.location-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.location-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.location-section .section-intro {
    margin-bottom: 50px;
}

.location-details {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.transport-info h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 12px;
}

.transport-info p {
    color: var(--color-gray);
    line-height: 1.8;
}

.location-image {
    flex: 1;
    background: var(--color-light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-cta {
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    color: var(--color-success);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--color-primary);
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 40px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .info-card {
        flex: 1 1 100%;
    }

    .value-proposition .container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 1 calc(50% - 25px);
    }

    .service-header {
        flex-direction: column;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .sector-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 32px;
    }

    .section-intro h2,
    .trust-section h2,
    .values-section h2,
    .experience-section h2 {
        font-size: 28px;
    }

    .sector-item {
        flex: 1 1 100%;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}