:root {
    --primary-color: #1a3a5c;
    --primary-light: #2d5a87;
    --primary-dark: #0f2540;
    --accent-color: #c9a962;
    --accent-light: #dfc587;
    --accent-dark: #a88a42;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --text-muted: #8895a7;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    --white: #ffffff;
    --border-color: #e1e5eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.site-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white) !important;
    font-size: 1.4rem;
    font-weight: 600;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--accent-color);
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

.brand-accent {
    color: var(--accent-color);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    margin: 0;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1002;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .brand-text {
    font-size: 1.2rem;
}

.close-menu {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > li {
    margin-bottom: 5px;
}

.mobile-nav > li > a {
    display: block;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.mobile-nav > li > a:hover,
.mobile-nav > li > a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.mobile-dropdown-menu li a:hover {
    color: var(--accent-color);
}

.dropdown-toggle-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle-mobile i {
    transition: var(--transition);
}

.mobile-dropdown.open .dropdown-toggle-mobile i {
    transform: rotate(180deg);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

main {
    padding-top: 72px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 58, 92, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.intro-section {
    padding: 100px 0;
    background: var(--bg-gradient);
}

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro-content {
    padding-left: 40px;
}

.intro-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-features {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.intro-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-color);
    font-weight: 500;
}

.intro-features li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.articles-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-card.featured {
    grid-column: span 1;
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.meta-item i {
    font-size: 0.9rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.article-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

.benefits-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.benefits-section .section-badge {
    background: rgba(201, 169, 98, 0.2);
    color: var(--accent-color);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.resources-section {
    padding: 100px 0;
    background: var(--bg-gradient);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.resource-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: block;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.resource-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.resource-card:hover .resource-icon {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.resource-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    padding: 60px 0 30px;
    background: var(--bg-cream);
}

.contact-intro .lead {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-cards-section {
    padding: 40px 0 80px;
    background: var(--bg-cream);
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-card-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-card-link:hover {
    color: var(--accent-color);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.location-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.location-info .section-title {
    font-size: 2rem;
}

.location-details {
    margin-top: 30px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
}

.location-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.location-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-intro-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-intro-content .section-title {
    font-size: 2.2rem;
}

.mission-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    margin: 0;
}

.what-we-offer {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.offer-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.offer-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
}

.offer-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.offer-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.approach-section {
    padding: 80px 0;
    background: var(--white);
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.approach-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
}

.approach-list li i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.approach-list h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
}

.approach-list p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--bg-cream);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.article-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.article-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.article-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.article-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.article-hero-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.article-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.article-content-section {
    padding: 60px 0 80px;
    background: var(--bg-cream);
}

.article-body {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-intro .lead {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.9;
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin-bottom: 40px;
}

.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.article-section h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.article-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.article-section ul,
.article-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-figure {
    margin: 30px 0;
    text-align: center;
}

.article-figure img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.article-figure figcaption {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.info-cards {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    margin: 0;
    color: var(--text-light);
}

.color-psychology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.color-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.color-swatch {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.color-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.color-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.tips-list {
    margin: 25px 0;
}

.tip-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
}

.tip-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tip-content p {
    margin: 0;
    color: var(--text-light);
}

.article-conclusion {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.article-conclusion h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.article-conclusion p {
    margin: 0;
    color: var(--text-color);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.toc-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 15px;
}

.related-list li:last-child {
    margin-bottom: 0;
}

.related-list a {
    display: block;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.related-list a:hover {
    background: var(--primary-color);
}

.related-list a:hover .related-title,
.related-list a:hover .related-category {
    color: var(--white);
}

.related-title {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.related-category {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 10px;
}

.resources-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.resources-list a::before {
    content: '\f135';
    font-family: 'bootstrap-icons';
    color: var(--accent-color);
}

.resources-list a:hover {
    color: var(--primary-color);
}

.font-categories {
    margin: 25px 0;
}

.font-category {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.font-category h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.font-category p {
    margin-bottom: 10px;
}

.font-use {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 500;
}

.hierarchy-example {
    margin: 25px 0;
}

.hierarchy-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.hierarchy-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 10px;
}

.hierarchy-demo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.h1-demo { font-size: 2rem; }
.h2-demo { font-size: 1.5rem; }
.h3-demo { font-size: 1.2rem; }
.body-demo { 
    font-family: 'Inter', sans-serif; 
    font-size: 1rem;
    color: var(--text-color);
}

.hierarchy-item > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.metric-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
}

.metric-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.metric-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.metric-recommendation {
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-color);
}

.pairing-examples {
    margin: 25px 0;
}

.pairing-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.pairing-item h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

.pairing-demo {
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.tip-box {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--accent-color);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin: 25px 0;
}

.tip-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--accent-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box p {
    margin: 0;
    color: var(--text-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.pillar-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.pillar-example {
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.comparison-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.comparison-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
}

.comparison-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-item ul {
    margin: 0;
    padding-left: 20px;
}

.comparison-item li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breakpoints-table {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 25px 0;
}

.breakpoint-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.breakpoint-row:last-child {
    border-bottom: none;
}

.breakpoint-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.breakpoint-row span {
    font-size: 0.9rem;
}

.code-block {
    background: var(--primary-dark);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    overflow-x: auto;
}

.code-block code {
    color: var(--accent-light);
    font-family: monospace;
    font-size: 0.95rem;
}

.responsive-techniques {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.technique-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.technique-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.technique-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.policy-content-section {
    padding: 60px 0 80px;
    background: var(--bg-cream);
}

.policy-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.policy-meta {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.policy-meta p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.contact-info-box p {
    margin: 8px 0;
}

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-99%);
    color: var(--primary-dark);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    padding: 80px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.footer-brand .brand-text {
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.last-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-reject {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    background: var(--bg-light);
}

.btn-cookie-settings {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-settings:hover {
    color: var(--primary-color);
}

@media (max-width: 1199px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .color-psychology-grid {
        grid-template-columns: 1fr;
    }

    .intro-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .approach-stats {
        margin-top: 30px;
    }

    .article-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .article-hero-title {
        font-size: 2rem;
    }

    .article-body {
        padding: 30px 20px;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .breakpoint-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .breakpoint-row.header {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .footer-content {
        padding: 60px 0 30px;
    }

    .approach-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .policy-content {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary-custom,
    .hero-cta .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary-custom,
    .cta-buttons .btn-outline-custom {
        width: 100%;
    }

    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .nav-prev,
    .nav-next {
        justify-content: center;
    }
}
