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

:root {
    --primary: #E0E0D8;
    --secondary: #A79E8B;
    --accent-1: #5F736F;
    --accent-2: #3B4A5C;
    --text-dark: #4A5C6F;
    --text-light: #7A8A9A;
    --border: #D5D5CD;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    background-color: var(--primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 64px;
    color: var(--accent-2);
    margin-bottom: 40px;
}

h2 {
    font-size: 44px;
    color: var(--accent-1);
    margin-bottom: 30px;
    margin-top: 60px;
}

h3 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
    margin-top: 40px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

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

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-2);
    text-decoration: none;
}

.logo-text {
    letter-spacing: 1px;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-1);
    text-decoration: none;
}

footer {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.footer-text a {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero {
    padding: 120px 0;
    text-align: center;
    background-color: var(--primary);
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--accent-1);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    margin-top: 60px;
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: rgba(167, 158, 139, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-top: 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-text {
    flex: 1;
}

.two-column-image {
    flex: 1;
}

.two-column-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: white;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-top: 0;
    color: var(--secondary);
}

.card p {
    color: var(--text-light);
    font-family: 'Merriweather', serif;
    font-size: 16px;
}

.button {
    display: inline-block;
    background-color: var(--accent-1);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: var(--accent-2);
    text-decoration: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content h3 {
    margin-top: 0;
    font-size: 22px;
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-block;
    color: var(--accent-1);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--accent-2);
}

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

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

label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-2);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    background-color: white;
    color: var(--text-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(95, 115, 111, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.disclaimer-section {
    background-color: rgba(167, 158, 139, 0.15);
    border-left: 4px solid var(--secondary);
    padding: 30px;
    margin: 60px 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: var(--accent-2);
}

.disclaimer-section p {
    color: var(--text-dark);
    font-size: 16px;
}

.thank-you-content {
    text-align: center;
    padding: 120px 0;
}

.thank-you-content h1 {
    font-size: 52px;
    margin-bottom: 30px;
}

.thank-you-content p {
    font-size: 20px;
    color: var(--accent-1);
    margin-bottom: 50px;
}

.back-link {
    display: inline-block;
    background-color: var(--accent-1);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.back-link:hover {
    background-color: var(--accent-2);
    text-decoration: none;
}

.content-block {
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.content-block li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}
