:root {
    --primary-color: #2c2c2c;
    --accent-color: #b59410;
    --bg-color: #fcfbf8;
    --card-bg: #ffffff;
    --text-muted: #666;
}

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

body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
}

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

/* Header & Logo */
header {
    background: var(--card-bg);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Assistant', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
    font-weight: 300;
}

/* Site-wide top navigation */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.site-nav {
    display: flex;
    gap: 25px;
}

.site-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.current {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Navigation Filters */
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid transparent;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    border-radius: 20px;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.card {
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 20px;
}

.card-country {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.card-desc {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Content pages (About / Care) */
.page-hero {
    text-align: center;
    padding: 50px 0 30px;
}

.page-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-section blockquote {
    background: var(--card-bg);
    border-right: 4px solid var(--accent-color);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-muted);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.style-card {
    background: var(--card-bg);
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.style-card h4 {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.style-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.tip-list {
    counter-reset: tip;
    list-style: none;
    padding: 0;
}

.tip-list li {
    counter-increment: tip;
    position: relative;
    padding: 12px 55px 12px 0;
    margin-bottom: 8px;
    background: var(--card-bg);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tip-list li::before {
    content: counter(tip);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.tip-list li {
    padding-right: 55px;
}

.service-box {
    background: var(--card-bg);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.service-box ul {
    margin: 15px 0 0;
    padding-right: 20px;
}

.service-box li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 40px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #888;
}