* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #555;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.intro-left {
    flex: 1;
    background: #ecf0f1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-right {
    flex: 1;
    padding: 2rem 0;
}

.intro-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-right p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #555;
}

.services-overview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.15rem;
    color: #666;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.btn-select-service {
    padding: 0.875rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-visual {
    flex: 1;
    background: #ecf0f1;
    min-height: 350px;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin-top: 5rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

.form-info-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.form-info-box h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-info-box ul {
    list-style: none;
}

.form-info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.form-info-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.form-right {
    flex: 1;
}

#contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.selected-service-display {
    background: #e8f5e9;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #27ae60;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

#selected-service-name {
    display: block;
    font-weight: 600;
    color: #27ae60;
}

#selected-service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.25rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.process-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    color: #555;
    font-size: 0.95rem;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.15rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

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

.page-header h1 {
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-section h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.25rem;
    color: #1a1a1a;
}

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

.content-section p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #555;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    margin-top: 0;
}

.contact-info-box p {
    margin-bottom: 0.75rem;
}

.legal-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.legal-notice p {
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

    .intro-section {
        flex-direction: column;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }
}