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

:root {
    --primary: #1a5490;
    --secondary: #2d7ab9;
    --accent: #4a9fd8;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --border: #e0e4ea;
    --success: #28a745;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 3px;
    margin: 0 15px;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

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

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 90px 0;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 720px;
    opacity: 0.95;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 60px 0;
}

.card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary);
}

.card p {
    color: var(--text-light);
    margin-bottom: 18px;
    flex-grow: 1;
    font-size: 15px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn:hover {
    background: var(--secondary);
    transform: scale(1.03);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

.card .btn {
    align-self: flex-start;
}

.services-section .cards-grid .card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

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

.form-card {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    max-width: 650px;
    margin: 0 auto;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    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: var(--primary);
}

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

.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 50px 0;
}

.feature-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

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

.info-item {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-dark);
    font-size: 15px;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--accent);
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

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

.disclaimer {
    background: var(--bg-light);
    padding: 35px;
    margin: 50px 0;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

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

.cookie-reject {
    background: #6c757d;
    color: white;
}

.legal-page {
    padding: 60px 0;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 35px 0 18px;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 14px;
    color: var(--secondary);
}

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

.legal-page ul {
    margin: 16px 0 16px 30px;
    color: var(--text-light);
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-card {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto;
}

.thanks-card h1 {
    font-size: 42px;
    color: var(--success);
    margin-bottom: 20px;
}

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

.thanks-card .btn {
    margin-top: 25px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

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

    .card {
        flex: 1 1 100%;
    }

    .about-content,
    .contact-grid {
        flex-direction: column;
    }

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

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

    nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}
