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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: white;
}

.btn-cookie.accept:hover {
    background: #229954;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 80px 80px 120px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 38px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hero-image {
    flex: 1;
    background: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 120px 80px;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
}

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #4a5568;
}

.service-row {
    display: flex;
    margin-bottom: 0;
    background: #ffffff;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background: #dfe6e9;
    overflow: hidden;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-content-right,
.service-content-left {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content-right p,
.service-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
}

.btn-select-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.process-section {
    padding: 100px 80px;
    background: #2c3e50;
    color: white;
}

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

.process-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 14px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cta-section {
    padding: 100px 80px;
    background: #3498db;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    padding: 100px 80px;
    background: #ffffff;
}

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

.form-container h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 0 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

    .hero-image {
        min-height: 400px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 50px;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 50px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
        min-width: 250px;
    }

    .contact-split {
        flex-direction: column;
        gap: 50px;
    }

    .about-content,
    .about-content.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }
}