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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

.hero-image {
    flex: 1;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.split-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    background: #f8fafc;
    padding: 80px 40px;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-image {
    background: #cbd5e1;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 15px;
    color: #1e293b;
}

.service-card p {
    padding: 0 25px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    padding: 20px 25px 15px;
}

.select-service {
    margin: 0 25px 25px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1d4ed8;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
}

.form-info p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

#selected-service-display {
    margin-top: 25px;
    padding: 20px;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    display: none;
}

#selected-service-display.active {
    display: block;
}

.form-container {
    flex: 1;
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.split-content-full {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1e293b;
}

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

.feature-item h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-item p {
    color: #64748b;
    font-size: 16px;
}

.content-right {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

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

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

.contact-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.8;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.info-block p {
    color: #64748b;
    margin: 0;
    font-size: 16px;
}

.contact-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1e293b;
}

.about-hero p {
    font-size: 19px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-section p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1e293b;
}

.legal-content .last-updated {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.thanks-container p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-service-info {
    background: #eff6ff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
}

.thanks-service-info h3 {
    color: #1e293b;
    margin-bottom: 10px;
}

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .split-reverse,
    .form-split,
    .split-content-full,
    .contact-split,
    .footer-content {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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