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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-center {
    flex: 1;
    text-align: center;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 540px;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-split {
    display: flex;
    min-height: 70vh;
}

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

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.content-image {
    flex: 1;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-intro {
    padding: 5rem 4rem 3rem;
    background: #ffffff;
}

.services-header-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-left {
    flex: 1;
}

.services-header-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.services-header-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #34495e;
}

.form-section {
    padding: 6rem 4rem;
    background: #f8f9fa;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.order-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 4rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
}

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    padding: 6rem 4rem 4rem;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4rem 6rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-info-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 4rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #34495e;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .nav-split {
        padding: 1.5rem 2rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 4rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .content-split {
        flex-direction: column;
        min-height: auto;
    }

    .content-split.reverse {
        flex-direction: column;
    }

    .content-text {
        padding: 3rem 2rem;
    }

    .content-image {
        height: 400px;
    }

    .services-header-split {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        padding: 3rem 2rem;
    }

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

    .form-section {
        padding: 4rem 2rem;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-split {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1.05rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .services-header-left h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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