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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6fa8;
    --accent-color: #e8954c;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fb;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
}

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

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: #fef3e8;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 25px;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, #1a4d7a 0%, #2c6fa8 100%);
    padding: 120px 30px 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--bg-white);
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #d47d35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,149,76,0.35);
}

.section {
    padding: 85px 30px;
}

.section-alt {
    background: var(--bg-light);
}

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

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-narrow {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 55px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

.price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 22px;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 45px;
}

.about-text {
    flex: 1.2;
}

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

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bg-white);
    font-size: 1.6rem;
    font-weight: 700;
}

.feature-content h3 {
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.form-container {
    max-width: 700px;
    margin: 50px auto 0;
    background: var(--bg-white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 50px;
}

.contact-item {
    padding: 28px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 65px 30px 35px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 45px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 22px;
    font-size: 1.15rem;
    color: var(--bg-white);
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.disclaimer {
    background: #fff9f0;
    border-left: 4px solid var(--accent-color);
    padding: 28px;
    margin: 45px 0;
    border-radius: 6px;
}

.disclaimer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.thanks-container {
    max-width: 750px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 2.8rem;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
    color: var(--text-light);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.97);
    padding: 24px 30px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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 {
    color: var(--bg-white);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 26px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.cookie-accept:hover {
    background: #d47d35;
}

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .about-layout {
        flex-direction: column;
    }

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

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