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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e5e0 100%);
    overflow-x: hidden;
}

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

/* Skeuomorphic Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.15),
        inset 0 1px 2px rgba(255,255,255,0.3),
        inset 0 -1px 2px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 50%, #DEB887 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.2),
        inset 0 1px 2px rgba(255,255,255,0.4),
        inset 0 -1px 2px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #696969 0%, #808080 50%, #A9A9A9 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-outline {
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    color: #8B4513;
    border: 2px solid #8B4513;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 10px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2F1B14 0%, #8B4513 50%, #A0522D 100%);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(255,255,255,0.3));
}

.brand-text {
    color: #F5DEB3;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

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

.nav-link {
    color: #F5DEB3;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    color: #FFF8DC;
    box-shadow: 
        inset 0 1px 2px rgba(255,255,255,0.2),
        inset 0 -1px 2px rgba(0,0,0,0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #F5DEB3;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2F1B14 0%, #8B4513 50%, #CD853F 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    color: #F5DEB3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-banner {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* Section Styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2F1B14;
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(139,69,19,0.3);
}

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

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    position: relative;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139,69,19,0.02) 2px,
            rgba(139,69,19,0.02) 4px
        );
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 50%, #FFF8DC 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.12),
        inset 0 1px 3px rgba(255,255,255,0.8),
        inset 0 -1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.18),
        inset 0 1px 3px rgba(255,255,255,0.9),
        inset 0 -1px 3px rgba(0,0,0,0.05);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(139,69,19,0.3));
}

.info-card h3 {
    font-size: 1.6rem;
    color: #2F1B14;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.15),
        inset 0 1px 3px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 48px rgba(0,0,0,0.25),
        inset 0 1px 3px rgba(255,255,255,0.9);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2F1B14;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.service-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.service-content li::before {
    content: '🏰';
    position: absolute;
    left: 0;
    top: 8px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFAF0 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 10px 28px rgba(0,0,0,0.12),
        inset 0 1px 3px rgba(255,255,255,0.8),
        inset 0 -1px 3px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #F5DEB3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(255,215,0,0.5);
}

.testimonial-author h4 {
    color: #2F1B14;
    margin-top: 20px;
    font-size: 1.1rem;
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #F5DEB3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.newsletter-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 
        inset 0 1px 3px rgba(255,255,255,0.2),
        inset 0 -1px 3px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFF8DC;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 1px 2px rgba(255,255,255,0.2);
}

.form-group input:focus {
    outline: none;
    border-color: #F5DEB3;
    background: rgba(255,255,255,0.95);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 0 8px rgba(245,222,179,0.5);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #F5F5DC 0%, #F0E68C 100%);
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    color: #2F1B14;
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.contact-item p,
.contact-item a {
    color: #555;
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #8B4513;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 8px 16px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-placeholder {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 100%);
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    box-shadow: 
        inset 0 4px 12px rgba(0,0,0,0.1),
        0 2px 6px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2F1B14 0%, #1C1C1C 100%);
    color: #F5DEB3;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8B4513 50%, transparent 100%);
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(245,222,179,0.3));
}

.footer-section h3 {
    color: #FFF8DC;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #FFF8DC;
    text-shadow: 0 1px 2px rgba(255,248,220,0.5);
}

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

/* Page Header for internal pages */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: #F5DEB3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    color: #2F1B14;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(139,69,19,0.2);
}

.about-text h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin: 32px 0 16px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.3);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #8B4513;
    font-weight: bold;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.services-detail,
.team-section,
.company-values {
    margin-bottom: 80px;
}

.services-detail h2,
.team-section h2,
.company-values h2 {
    color: #2F1B14;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(139,69,19,0.2);
}

.service-detail {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.service-detail h3 {
    color: #8B4513;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(139,69,19,0.3);
}

.stat-item p {
    color: #666;
    font-weight: 600;
}

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

.value-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.value-item h3 {
    color: #8B4513;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #F5DEB3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #2F1B14;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(139,69,19,0.2);
}

.lead {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 50px;
}

.thank-you-details {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 50px 0;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(139,69,19,0.3);
    flex-shrink: 0;
}

.step-content h3 {
    color: #2F1B14;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.1);
}

.next-actions,
.social-follow {
    margin: 50px 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    padding: 12px 24px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139,69,19,0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139,69,19,0.4);
}

.featured-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
}

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

.article-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.15),
        inset 0 1px 2px rgba(255,255,255,0.9);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    color: #2F1B14;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.1);
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 
        0 10px 28px rgba(0,0,0,0.12),
        inset 0 1px 2px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(0,0,0,0.18),
        inset 0 1px 2px rgba(255,255,255,0.9);
}

.blog-card.featured {
    margin-bottom: 60px;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(139,69,19,0.4);
}

.blog-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #666;
}

.article-date,
.reading-time {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h2 {
    margin-bottom: 16px;
}

.blog-content h2 a {
    color: #2F1B14;
    text-decoration: none;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(139,69,19,0.1);
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #8B4513;
}

.article-tags {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 100%);
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(139,69,19,0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139,69,19,0.4);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.sidebar-widget h3 {
    color: #2F1B14;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(139,69,19,0.1);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #EEE;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #8B4513;
}

.category-list span {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    color: #666;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
}

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

.popular-post {
    display: flex;
    gap: 12px;
    align-items: center;
}

.post-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.post-content h4 a {
    color: #2F1B14;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h4 a:hover {
    color: #8B4513;
}

.post-date {
    font-size: 0.8rem;
    color: #666;
}

.newsletter-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-sidebar-form input {
    padding: 10px 12px;
    border: 2px solid #DDD;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-sidebar-form input:focus {
    outline: none;
    border-color: #8B4513;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #F5DEB3;
}

.breadcrumb a {
    color: #F5DEB3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFF8DC;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.article-lead {
    font-size: 1.3rem;
    color: #F5DEB3;
    line-height: 1.7;
    max-width: 800px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-image-hero {
    margin-bottom: 40px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.image-caption {
    font-style: italic;
    color: #666;
    margin-top: 12px;
    font-size: 0.9rem;
}

.article-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-text h2 {
    color: #2F1B14;
    font-size: 2rem;
    margin: 40px 0 20px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.article-text h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin: 32px 0 16px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.article-text p {
    margin-bottom: 20px;
    color: #444;
}

.article-text ul,
.article-text ol {
    margin: 20px 0 20px 20px;
    color: #444;
}

.article-text li {
    margin-bottom: 8px;
}

.article-conclusion {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 
        inset 0 2px 6px rgba(139,69,19,0.1),
        0 4px 12px rgba(0,0,0,0.05);
}

.article-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid #EEE;
}

.article-tags h3 {
    color: #2F1B14;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.article-share {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid #EEE;
}

.article-share h3 {
    color: #2F1B14;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #165ECC 100%);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #EEE;
}

.related-articles h2 {
    color: #2F1B14;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

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

.related-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 28px rgba(0,0,0,0.15),
        inset 0 1px 2px rgba(255,255,255,0.9);
}

.related-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.related-content h3 a {
    color: #2F1B14;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: #8B4513;
}

.related-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
    line-height: 1.7;
}

.legal-text h2 {
    color: #2F1B14;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.legal-text h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin: 32px 0 16px;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.legal-text h4 {
    color: #A0522D;
    font-size: 1.2rem;
    margin: 24px 0 12px;
}

.legal-text p {
    margin-bottom: 16px;
    color: #444;
}

.legal-text ul,
.legal-text ol {
    margin: 16px 0 16px 20px;
    color: #444;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Cookie Settings Styles */
.cookie-settings-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #E6F3FF 0%, #CCE7FF 100%);
}

.cookie-controls {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.1),
        inset 0 1px 2px rgba(255,255,255,0.8);
}

.cookie-controls h2 {
    color: #2F1B14;
    text-align: center;
    margin-bottom: 16px;
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.cookie-category-settings {
    margin: 30px 0;
}

.cookie-category-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F8F8FF 0%, #F0F8FF 100%);
    border-radius: 12px;
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.05),
        0 2px 6px rgba(0,0,0,0.05);
}

.category-info h3 {
    color: #2F1B14;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.category-info p {
    color: #666;
    font-size: 0.9rem;
}

.cookie-controls-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Tables */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #EEE;
}

.cookies-table th {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cookies-table tr:hover {
    background: linear-gradient(135deg, #F8F8FF 0%, #F0F8FF 100%);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2F1B14 0%, #1C1C1C 100%);
    color: #F5DEB3;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-content h3 {
    color: #FFF8DC;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal.show {
    display: block;
}

.modal-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 100%);
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 3px rgba(255,255,255,0.8);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #2F1B14;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    text-shadow: 0 1px 2px rgba(139,69,19,0.2);
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F8F8FF 0%, #F0F8FF 100%);
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.cookie-category h3 {
    color: #2F1B14;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #CCC 0%, #999 100%);
    transition: 0.3s;
    border-radius: 26px;
    box-shadow: 
        inset 0 2px 6px rgba(0,0,0,0.3),
        0 1px 3px rgba(255,255,255,0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

input:checked + .slider {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.switch.disabled .slider {
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2F1B14 0%, #8B4513 100%);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link {
        padding: 16px 20px;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .legal-text {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }

    .cookie-controls-buttons {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-header,
    .hero {
        background: white !important;
        color: black !important;
    }
}
