/* 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: #2c3e50;
    background-color: #f8f6f3;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #8b4513;
}

h2 {
    font-size: 2rem;
    color: #a0522d;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

a:hover {
    color: #a0522d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #8b4513;
    color: white;
}

.btn-primary:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #d2b48c;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #daa520;
}

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

.btn-outline:hover {
    background-color: #8b4513;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

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

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4513;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b4513;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5dc 0%, #f0e68c 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #f8f6f3;
}

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

.about-text h2 {
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.testimonial-card {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.testimonial-author {
    margin-top: 1rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #8b4513;
}

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

/* Subscription Section */
.subscription {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-align: center;
}

.subscription h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscription p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    background-color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info img {
    width: 100px;
    height: 100px;
}

.contact-details h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.social-links h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    padding: 10px 20px;
    background-color: #8b4513;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #a0522d;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

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

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

.footer-section a {
    color: #bbb;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #bbb;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f5f5dc 0%, #f0e68c 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.page-hero p {
    font-size: 1.2rem;
    color: #2c3e50;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background-color: #fff;
}

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

.article-card {
    background: #f8f6f3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #8b4513;
    font-weight: 600;
    text-decoration: underline;
}

/* Article Page */
.article-page {
    padding: 40px 0;
    background-color: #fff;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.article-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #a0522d;
}

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

.article-content li {
    margin-bottom: 0.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-share {
    text-align: right;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.share-btn {
    padding: 8px 16px;
    background-color: #8b4513;
    color: white;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #a0522d;
}

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background-color: #f8f6f3;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.related-card a {
    color: #8b4513;
    font-weight: 600;
    text-decoration: underline;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

/* Thanks Page */
.thanks-page {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-image {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.next-steps {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.next-steps ul {
    margin-left: 2rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.contact-details {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.social-media {
    margin: 2rem 0;
}

.social-media h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    padding: 10px 20px;
    background-color: #8b4513;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #a0522d;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.services-preview {
    padding: 60px 0;
    background-color: #f8f6f3;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0;
    background-color: #fff;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #8b4513;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #a0522d;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f6f3;
    font-weight: bold;
    color: #8b4513;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

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

.cookie-modal-content h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f6f3;
    border-radius: 5px;
}

.cookie-option label {
    font-weight: bold;
    color: #2c3e50;
    margin-left: 0.5rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* About Page Specific */
.company-story {
    padding: 80px 0;
    background-color: #fff;
}

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

.story-text h2 {
    color: #8b4513;
    margin-bottom: 2rem;
}

.story-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.mission {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.mission h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.values {
    padding: 80px 0;
    background-color: #fff;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
}

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

.values-text h3 {
    color: #a0522d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-text h3:first-child {
    margin-top: 0;
}

.values-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.team {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.team h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #8b4513;
}

.team p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b4513;
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
    background: #f8f6f3;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.choose-item h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.choose-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .about-content,
    .contact-content,
    .story-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .articles-grid,
    .mission-grid,
    .team-stats,
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-share {
        text-align: center;
    }
    
    .actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .cookie-settings-button {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero,
    .services,
    .about-preview,
    .testimonials,
    .subscription,
    .contact {
        break-inside: avoid;
    }
}
