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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #34495e;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffc107;
    text-align: center;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-section {
    background-color: #1a252f;
    color: var(--bg-white);
    padding: 80px 25px;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 37, 47, 0.75);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: normal;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.article-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 25px;
    background-color: var(--bg-white);
}

.article-content {
    padding: 50px 40px;
}

.article-content h2 {
    font-size: 2rem;
    margin: 50px 0 25px 0;
    color: var(--primary-color);
    font-weight: normal;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    color: var(--primary-color);
    font-weight: normal;
}

.article-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

.article-content ul {
    margin: 25px 0;
    padding-left: 40px;
}

.article-content li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 3px;
    background-color: var(--bg-light);
}

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

.cta-inline {
    background-color: var(--bg-light);
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid var(--secondary-color);
}

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

.cta-inline p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
}

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

.services-section {
    max-width: 700px;
    margin: 70px auto;
    padding: 0 25px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 20px 0;
    font-weight: bold;
}

.form-section {
    max-width: 700px;
    margin: 70px auto;
    padding: 50px 40px;
    background-color: var(--bg-white);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-color);
}

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

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

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9em;
    vertical-align: super;
}

.citation:hover {
    text-decoration: underline;
}

.references-section {
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-section ol {
    padding-left: 25px;
}

.references-section li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.references-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid var(--success-color);
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    color: var(--primary-color);
}

.disclaimer-box {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #856404;
}

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

.footer-content {
    max-width: 1200px;
    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: 1.2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-small {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.contact-info {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 3px;
}

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

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.legal-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: var(--bg-white);
}

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

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 40px;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: var(--bg-white);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .article-content {
        padding: 30px 20px;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

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

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