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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --white: #ffffff;
}

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

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

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

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

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

main {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

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

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

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 60px;
    background-color: var(--light-bg);
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 35px;
    font-weight: normal;
    color: var(--secondary-color);
}

.content-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 40px 0;
    background-color: var(--light-bg);
}

.inline-cta {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.inline-cta h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
}

.inline-cta p {
    margin-bottom: 25px;
    font-size: 17px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.btn:hover {
    background-color: #c0392b;
}

.services-grid {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--border-color);
}

.service-card:last-child {
    border-bottom: none;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    margin-top: 0;
}

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

.service-card p {
    margin-bottom: 20px;
}

.service-card .btn {
    font-size: 15px;
    padding: 12px 28px;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info strong {
    color: var(--primary-color);
}

.form-section {
    background-color: var(--white);
    padding: 50px 0;
    margin: 60px 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.form-actions {
    text-align: center;
    margin-top: 30px;
}

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

.footer-content {
    max-width: 720px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    background-color: var(--light-bg);
    padding: 30px;
    margin: 50px 0;
    font-size: 14px;
    color: var(--text-light);
    border-left: 3px solid var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

.cookie-actions button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

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

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

.thanks-section {
    text-align: center;
    padding: 100px 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    main {
        padding: 40px 20px;
    }

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

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

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

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