/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

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

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

.cookie-icon svg {
    animation: bounce 2s infinite;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: 1px solid #fff;
    background: transparent;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-buttons button:hover {
    background: white;
    color: #000;
}

.cookie-buttons button:first-child {
    background: #4CAF50;
    border-color: #4CAF50;
}

.cookie-buttons button:first-child:hover {
    background: #45a049;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    margin-bottom: 20px;
    color: #333;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-category span {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
    background: #e0e0e0;
}

.cookie-modal-buttons button:first-child {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.cookie-modal-buttons button:first-child:hover {
    background: #45a049;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 50%, #D2691E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    color: #654321;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-image svg {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #FAFAFA;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.about-image svg {
    width: 100%;
    height: auto;
    animation: float 8s ease-in-out infinite;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    background: #FAFAFA;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image svg {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #D2691E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #8B4513;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #D2691E;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.contact-info h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-item svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #8B4513;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus {
    outline: 2px solid #D2691E;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-page {
    padding: 5rem 0;
    background: #FAFAFA;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-icon {
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #666;
    font-size: 1rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D2691E;
}

.legal-content h3 {
    color: #D2691E;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Special boxes for legal content */
.contact-box, .authority-box, .highlight-box, .warning-box, .info-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-box {
    background: #E8F5E8;
    border-left: 4px solid #4CAF50;
}

.authority-box {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
}

.highlight-box {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
}

.warning-box {
    background: #FFEBEE;
    border-left: 4px solid #F44336;
}

.info-box {
    background: #F3E5F5;
    border-left: 4px solid #9C27B0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #D2691E;
}

.right-item h4 {
    margin-bottom: 0.5rem;
    color: #8B4513;
}

/* Cookie-specific styles */
.cookie-types {
    margin: 2rem 0;
}

.cookie-type {
    background: #F8F9FA;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #D2691E;
    position: relative;
}

.cookie-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.cookie-status.necessary {
    background: #4CAF50;
    color: white;
}

.cookie-status.optional {
    background: #FF9800;
    color: white;
}

.cookie-details {
    background: rgba(139, 69, 19, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.browser-guide {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.browser-guide h4 {
    margin-bottom: 0.5rem;
    color: #2196F3;
}

.third-party-services {
    margin: 2rem 0;
}

.service {
    background: #F8F9FA;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #9C27B0;
}

.consent-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.consent-option {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.consent-option:hover {
    border-color: #D2691E;
    transform: translateY(-5px);
}

.consent-option h4 {
    margin-bottom: 1rem;
    color: #8B4513;
}

.consent-option button {
    margin-top: 1rem;
}

.duration-table {
    background: #F8F9FA;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

.duration-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    padding: 1rem;
    border-bottom: 1px solid #E0E0E0;
    align-items: center;
}

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

.duration-row:nth-child(odd) {
    background: rgba(139, 69, 19, 0.05);
}

.duration-type {
    font-weight: bold;
    color: #8B4513;
}

.duration-time {
    color: #D2691E;
    font-weight: 500;
}

.duration-purpose {
    color: #666;
}

.legal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #D2691E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #8B4513;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-guides {
        grid-template-columns: 1fr;
    }
    
    .consent-options {
        grid-template-columns: 1fr;
    }
    
    .duration-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .legal-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 50%, #D2691E 100%);
    padding: 5rem 0 3rem;
    text-align: center;
}

.blog-hero {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-icon {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.blog-hero h1 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.2rem;
    color: #654321;
    line-height: 1.6;
}

.blog-main {
    padding: 4rem 0;
    background: #FAFAFA;
    min-height: 100vh;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.article-image svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-article:hover .article-image svg {
    transform: scale(1.05);
}

.article-content {
    padding: 2.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-date {
    color: #666;
}

.article-category {
    background: #D2691E;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.article-content h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.recipe-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.recipe-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.recipe-stat svg {
    flex-shrink: 0;
}

.ingredients, .instructions, .tips {
    margin-bottom: 3rem;
}

.ingredients h3, .instructions h3, .tips h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D2691E;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.ingredient-section {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #D2691E;
}

.ingredient-section h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.ingredient-section li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.ingredient-section li::before {
    content: '•';
    color: #D2691E;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.instructions ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.instructions li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
    color: #333;
}

.instructions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #D2691E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.instructions strong {
    color: #8B4513;
}

.tip-box {
    background: #E8F5E8;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    border-radius: 8px;
}

.tip-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tip-box p:last-child {
    margin-bottom: 0;
}

.tip-box strong {
    color: #2E7D32;
}

/* Responsive design for blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .recipe-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions li {
        padding-left: 2.5rem;
    }
    
    .instructions li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 3rem 0 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .recipe-info {
        gap: 0.75rem;
    }
    
    .recipe-stat {
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .cookie-banner,
    .cookie-modal,
    .hamburger {
        display: none !important;
    }
}