:root {
    --color-primary: #2d3436;
    --color-secondary: #6c5ce7;
    --color-accent: #a29bfe;
    --color-light: #f8f9fa;
    --color-dark: #1a1a2e;
    --color-muted: #636e72;
    --color-border: #dfe6e9;
    --color-white: #ffffff;
    --color-success: #00b894;
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-primary);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--color-primary);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(45,52,54,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-story {
    padding: 8rem 2rem;
    background: var(--color-light);
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.problem-section {
    padding: 6rem 2rem;
    background: var(--color-dark);
    color: var(--color-white);
}

.problem-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.problem-section h2 {
    color: var(--color-white);
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.problem-item {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-secondary);
}

.problem-number {
    display: block;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.problem-item p {
    color: rgba(255,255,255,0.85);
}

.insight-section {
    padding: 8rem 2rem;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-badge {
    display: inline-block;
    background: var(--color-light);
    color: var(--color-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.insight-container h2 {
    margin-bottom: 1.5rem;
}

.insight-lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.insight-features {
    display: flex;
    gap: 2.5rem;
}

.insight-feature {
    flex: 1;
    text-align: left;
}

.insight-feature img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.insight-feature h3 {
    margin-bottom: 0.75rem;
}

.insight-feature p {
    color: var(--color-muted);
}

.social-proof {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.proof-container {
    max-width: 1100px;
    margin: 0 auto;
}

.proof-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    flex: 1;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.testimonial-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.testimonial-stars {
    color: #f39c12;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.mid-cta {
    padding: 5rem 2rem;
    background: var(--color-secondary);
    text-align: center;
}

.mid-cta-content h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.mid-cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.services-preview {
    padding: 8rem 2rem;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.services-intro h2 {
    margin-bottom: 1rem;
}

.services-intro p {
    color: var(--color-muted);
    font-size: 1.125rem;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-link {
    font-size: 0.95rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--color-light);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 400;
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
}

.badge-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-success);
}

.urgency-section {
    padding: 6rem 2rem;
    background: var(--color-dark);
}

.urgency-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.urgency-content {
    flex: 1;
}

.urgency-badge {
    display: inline-block;
    background: #e74c3c;
    color: var(--color-white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.urgency-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.urgency-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.urgency-image {
    flex: 1;
}

.urgency-image img {
    border-radius: var(--radius-md);
}

.process-section {
    padding: 8rem 2rem;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--color-border);
    margin-top: 25px;
    flex-shrink: 0;
}

.form-section {
    padding: 8rem 2rem;
    background: var(--color-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--color-muted);
}

.inquiry-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d3436 100%);
    text-align: center;
}

.final-cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.final-cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 5rem 2rem 2rem;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-main);
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-column address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .story-container,
    .urgency-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .insight-features {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-flow {
        flex-direction: column;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        right: 1rem;
        bottom: 1rem;
    }
}

.page-header {
    padding: 10rem 2rem 5rem;
    background: var(--color-light);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 5rem 2rem;
}

.page-content .container {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    margin: 2rem 0 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--color-muted);
}

.page-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-muted);
}

.page-content li {
    margin-bottom: 0.5rem;
}

.about-hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.about-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-hero-text {
    flex: 1;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.about-values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-muted);
}

.about-team {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.about-team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-team h2 {
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.services-hero {
    padding: 10rem 2rem 5rem;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.services-hero h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.services-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-section {
    padding: 6rem 2rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-detail-card {
    flex: 0 1 calc(50% - 1rem);
    min-width: 300px;
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.service-detail-image {
    width: 40%;
    min-height: 280px;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h3 {
    margin-bottom: 0.75rem;
}

.service-detail-content p {
    color: var(--color-muted);
    margin-bottom: 1rem;
    flex: 1;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    padding: 0.25rem 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.service-detail-content li::before {
    content: '✓';
    color: var(--color-success);
    margin-right: 0.5rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.contact-section {
    padding: 10rem 2rem 6rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--color-muted);
    margin-bottom: 2.5rem;
}

.contact-details {
    background: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
    font-weight: 600;
}

.contact-item p,
.contact-item address {
    color: var(--color-muted);
    font-style: normal;
}

.contact-form-section {
    flex: 1;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--color-light);
}

.thanks-content {
    max-width: 500px;
    text-align: center;
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-hero-content,
    .contact-container {
        flex-direction: column;
    }

    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }
}
