*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7eb8da;
    --secondary-color: #e8b4b8;
    --accent-color: #a8d5ba;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --text-color: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #7eb8da 0%, #a8d5ba 100%);
    --gradient-secondary: linear-gradient(135deg, #e8b4b8 0%, #f5d0c5 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(180deg, #fefefe 0%, #f8f9fa 50%, #f0f4f8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.loader-text {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(-10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
}

.logo-accent {
    color: var(--primary-color);
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-list > li > a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary-color);
    background: rgba(126, 184, 218, 0.1);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(126, 184, 218, 0.1);
    color: var(--primary-color);
    padding-left: 24px;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }
}

.burger-line {
    width: 24px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-color);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(45deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.02);
    border-radius: var(--radius-sm);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
}

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

.hero-section {
    position: relative;
    padding: 60px 24px 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(126, 184, 218, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 184, 218, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 55, 72, 0.3) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero-badge span {
    display: block;
    font-family: var(--font-accent);
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge strong {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-color);
}

.section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.article-card-content {
    padding: 24px;
}

.article-card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.article-card-date {
    font-size: 13px;
    color: var(--text-light);
}

.article-card-link {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card-link:hover {
    gap: 10px;
}

.features-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(126, 184, 218, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    background: var(--gradient-primary);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.site-footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.8);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .accent {
    color: var(--primary-color);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact .contact-item {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact .contact-label {
    display: block;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.copyright,
.update-info {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-content {
        grid-template-columns: auto 1fr auto;
    }
}

.cookie-icon {
    display: none;
}

@media (min-width: 768px) {
    .cookie-icon {
        display: block;
    }
}

.cookie-text h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: var(--white);
}

.cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(0,0,0,0.1);
}

.cookie-settings {
    background: transparent;
    color: var(--primary-color);
}

.cookie-preferences {
    display: none;
    padding: 20px 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #f8f9fa;
}

.cookie-preferences.active {
    display: block;
}

.preference-item {
    margin-bottom: 16px;
}

.preference-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.preference-label input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.preference-name {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}

.preference-desc {
    font-size: 13px;
    color: var(--text-light);
}

.cookie-save {
    background: var(--gradient-primary);
    color: var(--white);
    margin-top: 10px;
}

.article-page {
    padding: 40px 24px 80px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: var(--primary-color);
}

.article-breadcrumb span {
    margin: 0 8px;
}

.article-title {
    font-family: var(--font-secondary);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
}

.article-body h2 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.article-body h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 32px 0 16px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(126, 184, 218, 0.1) 0%, rgba(168, 213, 186, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-color);
}

.article-body img {
    margin: 30px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.article-body .image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: -20px;
    margin-bottom: 30px;
}

.product-comparison {
    margin: 40px 0;
    overflow-x: auto;
}

.product-comparison table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-comparison th,
.product-comparison td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-comparison th {
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 600;
}

.product-comparison tr:last-child td {
    border-bottom: none;
}

.product-comparison tr:hover td {
    background: rgba(126, 184, 218, 0.05);
}

.tips-box {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.15) 0%, rgba(245, 208, 197, 0.15) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 180, 184, 0.3);
}

.tips-box h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-box ul {
    list-style: none;
    padding: 0;
}

.tips-box li {
    padding: 10px 0 10px 28px;
    position: relative;
}

.tips-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.related-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-header {
    padding: 60px 24px;
    background: linear-gradient(135deg, rgba(126, 184, 218, 0.1) 0%, rgba(168, 213, 186, 0.1) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    padding: 20px;
    background: rgba(126, 184, 218, 0.1);
    border-radius: var(--radius-md);
}

.value-item h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    margin: 0;
}

.contact-section {
    padding: 80px 24px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.contact-info-card h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text-light);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-details {
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-details h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-detail-item {
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
}

.contact-detail-item .label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-detail-item .value {
    font-size: 15px;
    color: var(--dark-color);
}

.contact-detail-item a {
    color: var(--primary-color);
}

.policy-section {
    padding: 60px 24px 80px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.policy-container h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 16px;
}

.policy-container h2:first-child {
    margin-top: 0;
}

.policy-container p {
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.policy-container ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.policy-container li {
    margin-bottom: 8px;
}

.policy-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
    color: var(--text-light);
}

.external-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.external-link:hover {
    color: var(--dark-color);
}

@media (max-width: 767px) {
    .section {
        padding: 50px 20px;
    }
    
    .hero-section {
        padding: 40px 20px 60px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .article-page {
        padding: 30px 20px 60px;
    }
    
    .policy-container {
        padding: 30px 24px;
    }
    
    .contact-details {
        padding: 30px 24px;
    }
}
