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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.hero-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
}

.hero-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-container p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 3px;
    margin-top: 30px;
    background-color: var(--bg-light);
}

.content-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 30px;
}

.content-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 600;
}

.content-section h3 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.inline-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin: 35px 0;
    border-radius: 3px;
    background-color: var(--bg-light);
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin: 35px 0;
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h4 {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 18px 0;
    font-family: 'Arial', sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.form-container {
    max-width: 650px;
    margin: 50px auto;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    background-color: white;
}

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

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

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.97);
    color: white;
    padding: 25px 30px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 900px;
    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;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-button {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

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

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

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

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

.contact-info {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 3px;
    margin: 30px 0;
}

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

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

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.legal-content p,
.legal-content ul {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    font-size: 15px;
    color: #856404;
}

.about-intro {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--bg-light);
}

.about-intro h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-intro p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
