/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #3a3a3a;
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Header */
header {
    background-color: #f5ded2;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 2px 6px rgba(167, 126, 106, 0.25);
}

header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #a77e6a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(167, 126, 106, 0.3);
    transition: color 0.3s ease;
}

header h1:hover {
    color: #8c644d;
}

/* Main Content */
.content {
    padding: 70px 0;
    background-color: #faf8f6;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.blog-post {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 900px;
}

/* Sections */
section {
    margin-bottom: 50px;
}

section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #a77e6a;
    margin-bottom: 25px;
    border-bottom: 2px solid #a77e6a;
    padding-bottom: 8px;
    font-weight: 600;
}

section p {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 20px;
}

section ul,
section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

section ul li,
section ol li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 8px;
}

section ul li strong,
section ol li strong {
    color: #a77e6a;
}

/* Lists bullet style for ul */
section ul li::before {
    content: '•';
    color: #a77e6a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer */
footer {
    background-color: #f5ded2;
    padding: 25px 0;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    font-size: 0.95rem;
    color: #8c644d;
}

footer p {
    margin: 0;
    color: #8c644d;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p, section ul li, section ol li {
        font-size: 1rem;
    }

    .content {
        padding: 40px 0;
    }
}
