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

:root {
    --primary-dark: #1a1a2e;
    --primary-accent: #c5a572;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

header {
    background: var(--primary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-accent);
    text-decoration: none;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c44 100%);
    color: var(--white);
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: normal;
    letter-spacing: -0.5px;
}

.hero-section .subtitle {
    font-size: 20px;
    color: var(--primary-accent);
    margin-bottom: 40px;
    font-style: italic;
}

.article-intro {
    padding: 60px 0;
    font-size: 19px;
    line-height: 1.9;
}

.article-intro p {
    margin-bottom: 25px;
}

.article-intro .lead {
    font-size: 22px;
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--primary-accent);
    padding-left: 25px;
    margin: 40px 0;
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 26px;
    margin: 35px 0 20px;
    font-weight: normal;
    color: var(--primary-dark);
}

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

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

.inline-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px var(--shadow);
}

.inline-image figcaption {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.quote-block {
    background: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    border-left: 6px solid var(--primary-accent);
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.inline-cta {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
    border-radius: 4px;
}

.inline-cta h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary-accent);
    color: var(--white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 3px;
}

.btn:hover {
    background: #d4b482;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
}

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

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

.service-item {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-item h4 {
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: normal;
}

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

.service-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 35px;
    margin: 45px 0;
    border-radius: 3px;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: bold;
    font-style: normal;
}

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

.form-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section .form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-accent);
    color: var(--white);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    background: var(--white);
    color: var(--primary-accent);
    padding: 12px 35px;
}

.sticky-cta .btn:hover {
    background: var(--bg-light);
}

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

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

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

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

.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;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

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

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

.cookie-actions .btn {
    padding: 10px 25px;
    font-size: 14px;
}

.page-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: normal;
    color: var(--primary-dark);
}

.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

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

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

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

.contact-info strong {
    color: var(--primary-dark);
    display: inline-block;
    min-width: 150px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content .btn {
    margin-top: 20px;
}

.split-section {
    display: flex;
    gap: 60px;
    margin: 60px 0;
    align-items: flex-start;
}

.split-section .split-content {
    flex: 1;
}

.split-section .split-image {
    flex: 1;
}

.split-section .split-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px var(--shadow);
}

.number-list {
    counter-reset: item;
    list-style: none;
    margin: 30px 0;
}

.number-list li {
    counter-increment: item;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.number-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 60px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
    }

    nav.active {
        left: 0;
    }

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

    .hero-section .subtitle {
        font-size: 16px;
    }

    .article-intro {
        font-size: 17px;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-section {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}
