:root {
    --bg: #FFF9F2;
    --ink: #3B2A20;
    --primary: #C98A4B;
    --primary-hover: #A2672F;
    --surface: #FFF3E4;
    --footer: #2A1E16;
    --cream-text: #FFF9F2;
}

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

body {
    font-family: 'Nunito', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--bg);
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Baloo 2', 'Noto Sans SC', sans-serif;
    color: var(--ink);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-hover);
}

/* Header */
header {
    background: var(--bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(162, 103, 47, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
}

/* Steam Animation */
@keyframes steamRise {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { opacity: 1; }
    100% { transform: translateY(-8px) scale(1.3); opacity: 0; }
}

.steam-puff {
    transform-origin: center;
    animation: steamRise 2s infinite ease-out;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--ink);
    font-weight: 600;
}

/* Pill Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 999px; /* pill shape */
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', 'Noto Sans SC', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--cream-text);
    box-shadow: 0 4px 15px rgba(201, 138, 75, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--cream-text);
    box-shadow: 0 6px 20px rgba(162, 103, 47, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--cream-text);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 5rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--ink);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Cards */
.card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(162, 103, 47, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.card p {
    color: var(--ink);
    opacity: 0.85;
}

/* Pricing */
.pricing-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(162, 103, 47, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(162, 103, 47, 0.15);
}

.pricing-card.recommended {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}
.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

.price {
    font-family: 'Baloo 2', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: var(--ink);
    opacity: 0.7;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(201, 138, 75, 0.3);
    color: var(--ink);
    font-weight: 600;
}
.features-list li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(162, 103, 47, 0.06);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    opacity: 0.85;
}

/* --- Blog & Article Styles --- */
.article-container { max-width: 800px; margin: 0 auto; padding: 2rem 0 5rem; }
.breadcrumb { margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--ink); opacity: 0.8; font-weight: 600; }
.breadcrumb a { color: var(--primary); }
.article-header { text-align: center; margin-bottom: 3rem; }
.article-title { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.3; }
.article-meta { display: flex; justify-content: center; gap: 1.5rem; font-size: 0.95rem; opacity: 0.7; font-weight: 600; }
.article-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; color: var(--primary-hover); border-bottom: 2px dashed rgba(201, 138, 75, 0.3); padding-bottom: 0.5rem; }
.article-content h3 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: var(--ink); }
.article-content p { margin-bottom: 1.2rem; font-size: 1.1rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 0 0 1.2rem 2rem; font-size: 1.1rem; line-height: 1.8; }
.article-content li { margin-bottom: 0.5rem; }
.article-content a { text-decoration: underline; text-decoration-style: dashed; color: var(--primary); font-weight: 600; }
.article-card { background: var(--surface); border-radius: 24px; overflow: hidden; box-shadow: 0 8px 20px rgba(162, 103, 47, 0.05); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-5px); }
.article-card-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
.article-category { font-size: 0.85rem; background: var(--primary); color: var(--cream-text); padding: 0.3rem 0.8rem; border-radius: 20px; display: inline-block; margin-bottom: 1rem; font-weight: bold; align-self: flex-start; }
.article-card h3 { font-size: 1.4rem; margin-bottom: 1rem; text-align: left; }
.article-card p.excerpt { opacity: 0.8; margin-bottom: 1.5rem; font-size: 0.95rem; text-align: left; flex-grow: 1; }
.article-card-meta { display: flex; justify-content: space-between; font-size: 0.85rem; opacity: 0.6; margin-bottom: 1.5rem; font-weight: 600; }
.related-articles { margin-top: 4rem; padding-top: 2rem; border-top: 2px dashed rgba(201, 138, 75, 0.2); }

/* Footer */
footer {
    background: var(--footer);
    color: var(--bg);
    padding: 4rem 0 2rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 249, 242, 0.7);
    font-weight: 600;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--bg);
}

.copyright {
    text-align: center;
    color: rgba(255, 249, 242, 0.5);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
    .pricing-card.recommended:hover {
        transform: translateY(-8px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}
.hero-text {
    flex: 1;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(162, 103, 47, 0.15);
    animation: floatUpDown 6s ease-in-out infinite;
}
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--cream-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(201, 138, 75, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-btn:hover {
    background: var(--primary-hover);
    color: var(--cream-text);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(162, 103, 47, 0.5);
}
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
}

