:root {
    --primary-purple: #5B2C6F;
    --accent-orange: #E67E22;
    --dark-navy: #1A2238;
    --light-beige: #F5F1E8;
    --warm-grey: #A39B8B;
    --soft-white: #FAFAFA;
    --deep-plum: #3E1F47;
    --bright-coral: #FF6B5A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Inter', sans-serif;
    --font-mono: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-navy);
    background-color: var(--soft-white);
    overflow-x: hidden;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--warm-grey);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-grey);
    margin-top: 0.5rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.2);
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
}

.intro-section {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-white) 100%);
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.personal-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.personal-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.reviews-section {
    padding: 6rem 0;
    background: var(--soft-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--primary-purple);
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.15);
}

.review-card-large {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
}

.review-card-elevated {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
    color: white;
}

.review-card-elevated .review-meta,
.review-card-elevated h3,
.review-card-elevated p {
    color: white;
}

.review-card-elevated .read-more-btn {
    background: var(--accent-orange);
    color: white;
}

.review-card-offset {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

.review-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.review-card-large .review-image {
    height: 400px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.1);
}

.review-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--warm-grey);
}

.review-category {
    background: var(--accent-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.review-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.review-card-elevated h3 {
    color: white;
}

.review-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: var(--deep-plum);
    transform: translateX(5px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--bright-coral);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.cookie-btn-accept {
    background: var(--accent-orange);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--bright-coral);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-decline:hover {
    background: white;
    color: var(--dark-navy);
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    color: var(--dark-navy);
}

.cookie-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-purple);
}

.cookie-option {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-beige);
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--warm-grey);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--warm-grey);
    margin-bottom: 1.5rem;
}

.breadcrumbs a {
    color: var(--primary-purple);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.review-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--warm-grey);
    margin-bottom: 2rem;
}

.article-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    margin-bottom: 1.5rem;
}

.inline-image {
    position: relative;
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-box,
.rating-box,
.comparison-box {
    background: linear-gradient(135deg, var(--light-beige) 0%, #F0EAE0 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-orange);
    margin: 2rem 0;
}

.highlight-box h3,
.rating-box h3,
.comparison-box h3 {
    font-family: var(--font-heading);
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.rating-box ul,
.comparison-box ul,
.content-section ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.rating-box li,
.comparison-box li,
.content-section ul li {
    margin-bottom: 0.8rem;
}

.external-links {
    list-style: none;
    margin-left: 0;
}

.external-links li {
    margin-bottom: 1rem;
}

.external-links a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-links a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.article-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-beige);
    gap: 2rem;
}

.back-link,
.next-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover,
.next-link:hover {
    color: var(--accent-orange);
    transform: translateX(-5px);
}

.next-link:hover {
    transform: translateX(5px);
}

.about-page,
.contact-page,
.policy-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--warm-grey);
    margin-bottom: 3rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin: 3rem 0 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.timeline {
    margin: 3rem 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--primary-purple) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -33px;
    top: 10px;
    width: 15px;
    height: 15px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--soft-white);
}

.timeline-item h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: var(--warm-grey);
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.quote-box blockquote p {
    color: white;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--light-beige) 0%, #F0EAE0 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.contact-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-beige);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.submit-btn {
    padding: 1rem 3rem;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--deep-plum);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 44, 111, 0.3);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

.info-box {
    background: var(--light-beige);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.info-box p,
.info-box ul {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box ul {
    margin-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.8rem;
}

.info-box a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.info-box a:hover {
    color: var(--accent-orange);
}

.faq-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: var(--light-beige);
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
    color: var(--dark-navy);
}

.policy-content {
    padding: 3rem 0;
}

.policy-intro {
    background: linear-gradient(135deg, var(--light-beige) 0%, #F0EAE0 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-orange);
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--deep-plum);
    margin: 1.5rem 0 1rem;
}

.policy-section p,
.policy-section ul {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
}

.cookie-types {
    margin: 2rem 0;
}

.cookie-type {
    background: var(--light-beige);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cookie-type h4 {
    font-family: var(--font-heading);
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--light-beige) 0%, #F0EAE0 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-orange);
    margin: 2rem 0;
}

@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card-large,
    .review-card-elevated,
    .review-card-offset {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-plum) 100%);
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 1.1rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        transform: none;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-year::after {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .article-header h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-footer-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content h3 {
        font-size: 1.4rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .review-content {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}