:root {
    --color-primary: #1a5f7a;
    --color-secondary: #86c5d8;
    --color-accent: #e8aa42;
    --color-dark: #0f2027;
    --color-light: #f7f9fa;
    --color-text: #2d3436;
    --color-muted: #636e72;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

header {
    background-color: #fff;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-accent);
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

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

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

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

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    padding: 20px;
}

.nav-mobile.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px;
    margin-left: 8%;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: #d49a38;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.section {
    padding: 80px 0;
}

.section-offset {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.section-alt {
    background-color: #fff;
}

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.asymmetric-left {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.asymmetric-right {
    flex: 1.2;
    min-width: 350px;
    position: relative;
}

.asymmetric-right.offset-up {
    margin-top: -60px;
}

.asymmetric-right.offset-down {
    margin-top: 60px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

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

.image-block {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-secondary);
}

.image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: #fff;
    padding: 24px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    max-width: 220px;
}

.image-overlay-card h4 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.image-overlay-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.services-staggered {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-large);
    overflow: hidden;
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-soft);
}

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

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-muted);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-muted);
}

.cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

.card:nth-child(2) {
    margin-top: 40px;
}

.card:nth-child(3) {
    margin-top: -20px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    height: 200px;
    background-color: var(--color-secondary);
    overflow: hidden;
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.card-price {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 700;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 100px 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-medium);
    max-width: 400px;
    flex: 1;
    min-width: 300px;
}

.testimonial:nth-child(2) {
    margin-top: 50px;
}

.testimonial p {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info span {
    display: block;
    color: #fff;
    font-weight: 600;
}

.testimonial-info small {
    color: rgba(255,255,255,0.6);
}

.form-section {
    background-color: var(--color-light);
    padding: 80px 0;
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--color-muted);
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-benefit svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.form-benefit span {
    color: var(--color-dark);
}

.form-wrapper {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-small);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-small);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-dark);
}

.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: none;
}

.cta-floating.visible {
    display: block;
}

.cta-floating a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.cta-floating a:hover {
    transform: scale(1.05);
}

footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 60px 0;
    background-color: #fff;
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 32px 0 16px;
}

.content-page h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 24px 0 12px;
}

.content-page p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-page ul {
    margin: 16px 0 16px 24px;
}

.content-page li {
    margin-bottom: 8px;
    color: var(--color-text);
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.contact-details p {
    color: var(--color-muted);
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-large);
    z-index: -1;
}

.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-primary);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.disclaimer {
    background-color: rgba(0,0,0,0.03);
    padding: 24px;
    border-radius: var(--radius-small);
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--color-muted);
    text-align: left;
}

.disclaimer p {
    margin-bottom: 8px;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card-image {
    height: 200px;
    background-color: var(--color-secondary);
    overflow: hidden;
}

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

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-card-body p {
    color: var(--color-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-card-price {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
}

.service-card-price span {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 40px 24px;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .asymmetric-left,
    .asymmetric-right {
        padding-right: 0;
    }

    .asymmetric-right.offset-up,
    .asymmetric-right.offset-down {
        margin-top: 0;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .card:nth-child(2),
    .card:nth-child(3) {
        margin-top: 0;
    }

    .testimonial:nth-child(2) {
        margin-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .image-overlay-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
        margin-left: auto;
        margin-right: auto;
        transform: translateY(-20px);
    }
}
