/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --primary-purple: #8b5a96;
    --light-purple: #b8a1c4;
    --dark-purple: #6b4571;
    --primary-green: #7cb342;
    --light-green: #aed581;
    --dark-green: #558b2f;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --background-light: #fafafa;
    --shadow: 0 4px 20px rgba(139, 90, 150, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-purple);
    color: var(--primary-white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Header */
.header {
    background: var(--primary-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-purple);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--primary-white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(124, 179, 66, 0.3);
}

/* Asymmetric Layout */
.asymmetric-section {
    padding: 80px 0;
    overflow: hidden;
}

.asymmetric-section:nth-child(even) {
    background: var(--background-light);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 8fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.asymmetric-section.reverse .content-wrapper {
    grid-template-columns: 1fr 8fr;
}

.text-content {
    z-index: 2;
    position: relative;
}

.image-content {
    position: relative;
    z-index: 1;
}

.image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Overlapping effect */
.asymmetric-section .image-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--light-purple);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.asymmetric-section.reverse .image-content::before {
    right: auto;
    left: -20px;
    background: var(--light-green);
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--primary-white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-purple);
    box-shadow: 0 8px 30px rgba(139, 90, 150, 0.15);
}

.service-card h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--dark-green);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--primary-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--light-purple);
    margin-bottom: 20px;
}

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

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .asymmetric-section.reverse .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .asymmetric-section {
        padding: 50px 0;
    }
    
    .image-content img {
        height: 250px;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, var(--light-purple), var(--light-green));
    padding: 80px 0;
    text-align: center;
    color: var(--primary-white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Product features */
.product-features {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--primary-green);
}

.product-features h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Quality promise */
.quality-promise {
    background: var(--background-light);
    padding: 80px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promise-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.promise-card:hover {
    transform: translateY(-5px);
}

.promise-card h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

/* Delivery options */
.delivery-options {
    padding: 80px 0;
    background: var(--primary-white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background: var(--primary-white);
    border: 2px solid var(--light-purple);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.option-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.option-card.featured::before {
    content: 'Mest populær';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--primary-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.option-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.option-card h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.option-card li {
    padding: 8px 0;
    color: var(--text-light);
}

/* Process steps */
.process-steps ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-green);
    color: var(--primary-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Delivery areas */
.delivery-areas {
    padding: 80px 0;
    background: var(--background-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.area-description {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-label {
    color: var(--text-dark);
    font-weight: 500;
}

.pricing .price {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
}

.area-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.area-features li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.area-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Special services */
.special-services {
    padding: 80px 0;
    background: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    padding: 25px;
    border-left: 4px solid var(--light-green);
    background: var(--background-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.service-item h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

/* Delivery guarantee */
.delivery-guarantee {
    padding: 80px 0;
    background: var(--primary-purple);
    color: var(--primary-white);
}

.delivery-guarantee h2 {
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 50px;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.guarantee-features ul {
    list-style: none;
    padding: 0;
}

.guarantee-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Blog Layout */
.blog-content {
    padding: 80px 0;
    background: var(--primary-white);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-post {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 90, 150, 0.15);
}

.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date {
    color: var(--primary-green);
}

.post-category {
    background: var(--light-purple);
    color: var(--primary-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-post h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-excerpt {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tag {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background: var(--light-green);
    color: var(--primary-white);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
}

.sidebar-widget h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.popular-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.popular-post-date {
    font-size: 12px;
    color: var(--text-light);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.category-link {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--primary-purple);
}

.post-count {
    background: var(--primary-green);
    color: var(--primary-white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.monthly-tip {
    background: var(--primary-white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-green);
}

.monthly-tip p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.tip-cta {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.tip-cta:hover {
    color: var(--dark-green);
}

.newsletter-signup {
    background: var(--primary-white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.newsletter-signup h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid var(--light-purple);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.newsletter-form button {
    padding: 12px;
    font-size: 14px;
}

/* Responsive Blog Layout */
@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-content {
        padding: 50px 0;
    }
    
    .blog-layout {
        padding: 0 15px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .blog-post h2 {
        font-size: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .popular-post {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-post img {
        width: 100%;
        height: 150px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* FAQ Styles */
.faq-content {
    padding: 80px 0;
    background: var(--primary-white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    background: var(--background-light);
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--light-purple);
}

.category-btn.active {
    background: var(--primary-purple);
    color: var(--primary-white);
    border-color: var(--primary-purple);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--primary-white);
    border: 2px solid var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--light-purple);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-green);
    color: var(--primary-white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-purple);
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-white);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    transition: var(--transition);
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    color: var(--primary-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--primary-white);
}

.faq-answer p {
    padding: 0 30px;
    margin: 20px 0;
    line-height: 1.7;
}

.faq-answer ul {
    padding: 0 30px 0 50px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
    padding-bottom: 25px;
}

.faq-contact {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(135deg, var(--light-purple), var(--light-green));
    color: var(--primary-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-method strong {
    color: var(--primary-white);
}

.contact-method a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.contact-method a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-method span {
    opacity: 0.9;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-content {
        padding: 50px 0;
    }
    
    .faq-categories {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .faq-list {
        margin: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        align-self: flex-end;
    }
    
    .faq-answer p,
    .faq-answer ul {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-answer ul {
        padding-left: 40px;
    }
    
    .contact-card {
        margin: 0 20px;
        padding: 30px 25px;
    }
    
    .contact-methods {
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: var(--primary-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info h2,
.contact-form-section h2 {
    color: var(--primary-purple);
    margin-bottom: 25px;
    font-size: 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.info-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.hours-row:last-child {
    border-bottom: none;
}

.special-services {
    background: var(--primary-white);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-green);
    margin-top: 30px;
}

.special-services h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.special-services ul {
    list-style: none;
    padding: 0;
}

.special-services li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.special-services li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--primary-white);
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message h4 {
    margin-bottom: 10px;
    color: inherit;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--background-light);
}

.map-section h2 {
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: var(--background-light);
    border: 2px solid var(--light-green);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.map-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    background: var(--primary-green);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 15px;
}

.map-link:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.directions {
    background: var(--primary-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.directions h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.directions li:last-child {
    border-bottom: none;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 50px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .map-placeholder {
        padding: 25px;
        min-height: 250px;
    }
    
    .directions {
        padding: 20px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 80px 0;
    background: var(--primary-white);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-intro {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-purple);
}

.policy-section h3 {
    color: var(--dark-purple);
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Cookie Tables */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: var(--primary-purple);
    color: var(--primary-white);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: var(--background-light);
}

/* Cookie Preferences */
.cookie-preferences {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    border: 2px solid var(--light-green);
}

.cookie-preferences h2 {
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.cookie-settings {
    margin-top: 25px;
    background: var(--primary-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-toggle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 26px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--primary-white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: var(--primary-green);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    background: var(--light-purple);
    cursor: not-allowed;
}

.toggle-content {
    flex: 1;
}

.toggle-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.toggle-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 50px 0;
    }
    
    .policy-text {
        padding: 0 20px;
    }
    
    .policy-intro {
        padding: 20px;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
    
    .cookie-preferences {
        padding: 20px;
        margin: 30px 20px;
    }
    
    .cookie-settings {
        padding: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-slider {
        margin-top: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-description {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.cta-button {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
