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

body {
    font-family: 'Segoe UI', Georgia, serif;
    color: #333;
    line-height: 1.8;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #fff;
    border-bottom: 1px solid #f0e8e8;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(180,100,100,0.08);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #c0687a;
    font-family: Georgia, serif;
    letter-spacing: -0.3px;
}

.logo span {
    color: #e8a0b0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav ul li a {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #c0687a;
}

.hero {
    background: linear-gradient(135deg, #fff5f7 0%, #fce4ec 100%);
    padding: 70px 24px;
    text-align: center;
    border-bottom: 1px solid #f0d0d8;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: #c0687a;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(192,104,122,0.2);
    margin-top: 20px;
}

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

.section-header {
    text-align: center;
    padding: 60px 0 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.section-header p {
    font-size: 1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 60px;
}

.article-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-card-body {
    padding: 24px;
    background: #fff;
}

.article-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c0687a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: Georgia, serif;
}

.article-card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more-link {
    font-size: 0.85rem;
    color: #c0687a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-link:hover {
    text-decoration: underline;
}

.featured-article {
    background: #fff5f7;
    padding: 60px 0;
    border-top: 1px solid #f0d0d8;
    border-bottom: 1px solid #f0d0d8;
}

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

.featured-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.25;
    font-family: Georgia, serif;
}

.featured-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 1rem;
}

.featured-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c0687a;
    margin: 24px 0 12px;
}

.featured-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(192,104,122,0.15);
}

.tips-section {
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tip-card {
    background: #fff;
    border: 1px solid #f0d0d8;
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s;
}

.tip-card:hover {
    border-color: #c0687a;
}

.tip-number {
    width: 40px;
    height: 40px;
    background: #c0687a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.contact-section {
    background: #fff5f7;
    padding: 50px 24px;
    text-align: center;
    border-top: 1px solid #f0d0d8;
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-info strong {
    color: #c0687a;
}

footer {
    background: #2a1a1e;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
    color: #e8a0b0;
}

.footer-brand .logo span {
    color: #c0687a;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #e8a0b0;
}

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

.page-hero {
    background: linear-gradient(135deg, #c0687a 0%, #a0485a 100%);
    color: white;
    padding: 60px 24px;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.85;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 36px 0 14px;
    font-weight: 700;
    font-family: Georgia, serif;
}

.page-content h3 {
    font-size: 1.15rem;
    color: #c0687a;
    margin: 24px 0 12px;
    font-weight: 600;
}

.page-content p {
    color: #555;
    margin-bottom: 16px;
}

.page-content ul {
    margin: 14px 0 18px 24px;
    color: #555;
}

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

@media (max-width: 768px) {
    .articles-grid, .featured-inner, .tips-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
