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

:root {
    --primary: #2c5f7c;
    --secondary: #4a8ba6;
    --accent: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-notice {
    background: rgba(244, 162, 97, 0.1);
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

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

.hero {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    height: 450px;
    background: var(--bg-light);
    margin-bottom: 50px;
    border-radius: 4px;
    overflow: hidden;
}

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

.content-section {
    padding: 70px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.content-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.inline-image {
    width: 100%;
    height: 380px;
    background: var(--bg-light);
    margin: 45px 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
    padding: 0 5%;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 20px;
}

.cta-inline {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: var(--secondary);
}

.form-section {
    background: var(--bg-light);
    padding: 70px 5%;
    margin-top: 60px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-white);
}

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

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

.submit-btn:hover {
    background: var(--secondary);
}

.contact-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.info-block {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

footer {
    background: var(--text-dark);
    color: #ccc;
    padding: 50px 5%;
    margin-top: 80px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 25px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 5%;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--primary);
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer {
    background: rgba(244, 162, 97, 0.1);
    padding: 30px;
    margin: 50px auto;
    max-width: 900px;
    border-left: 4px solid var(--accent);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
    }

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