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

:root {
    --primary: #1a5f7a;
    --secondary: #159895;
    --accent: #57c5b6;
    --dark: #002b3d;
    --light: #f8f9fa;
    --text: #2c3e50;
    --overlay: rgba(0, 43, 61, 0.65);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.ad-notice {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffc107;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--secondary);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(21, 152, 149, 0.4);
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(21, 152, 149, 0.5);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid white;
    transition: all 0.3s;
    cursor: pointer;
    margin-left: 20px;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.section-visual {
    position: relative;
    padding: 0;
    margin: 0;
}

.visual-block {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.visual-block-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.93);
    margin: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.visual-content-right {
    margin-left: auto;
}

.visual-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.visual-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

.section-standard {
    padding: 100px 0;
    background: var(--light);
}

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

.section-white {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.section-dark .section-title {
    color: white;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--light);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.select-service-btn:hover {
    background: var(--accent);
}

.select-service-btn.selected {
    background: var(--primary);
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 36px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.3s;
    font-family: inherit;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary);
}

.contact-info {
    background: white;
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 36px;
}

.info-item {
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.info-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--accent);
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #999;
}

.disclaimer {
    background: #fff3e0;
    padding: 30px;
    border-left: 4px solid #ff9800;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 43, 61, 0.97);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

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

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

.cookie-reject:hover {
    background: white;
    color: var(--dark);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
    text-align: center;
}

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #666;
}

.reference-list {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.reference-list h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 22px;
}

.reference-list ol {
    text-align: left;
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.reference-list a {
    color: var(--secondary);
    word-break: break-all;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .visual-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .visual-content h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        gap: 20px;
    }

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

    .form-container {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-btn {
        width: 100%;
    }
}