* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

.navbar {
    background: linear-gradient(135deg, #f8e1e6, #f3d5da);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4a6b;
}

.nav-logo img {
    margin-right: 10px;
    border-radius: 50%;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #a8616b;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #a8616b;
}

.hero {
    background: linear-gradient(135deg, #f8e1e6, #f0c7ce);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #8b4a6b;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6c6c6c;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #a8616b, #8b4a6b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 74, 107, 0.3);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services {
    padding: 4rem 0;
    background-color: #fefefe;
}

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

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

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

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #6c6c6c;
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8e1e6, #f0c7ce);
}

.stats-section h2 {
    text-align: center;
    color: #8b4a6b;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.chart-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-overview {
    padding: 4rem 0;
    background-color: #fefefe;
}

.article-overview h2 {
    text-align: center;
    color: #8b4a6b;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.overview-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.overview-list li {
    background: white;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #a8616b;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.overview-list li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #a8616b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.latest-posts {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8e1e6, #f0c7ce);
}

.latest-posts h2 {
    text-align: center;
    color: #8b4a6b;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.post-preview:hover {
    transform: translateY(-5px);
}

.post-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.post-preview h3 {
    padding: 1rem;
    color: #8b4a6b;
}

.post-preview h3 a {
    text-decoration: none;
    color: inherit;
}

.post-preview h3 a:hover {
    color: #a8616b;
}

.post-preview p {
    padding: 0 1rem 1rem;
    color: #6c6c6c;
}

.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.footer-section p,
.footer-section li {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a:hover {
    color: #f8e1e6;
}

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

.social-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page {
    padding: 2rem 0;
    min-height: 60vh;
}

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

.page-header h1 {
    color: #8b4a6b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #6c6c6c;
    font-size: 1.1rem;
}

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

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

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

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

.post-content {
    padding: 1.5rem;
}

.post-content h2 {
    color: #8b4a6b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.post-content h2 a {
    text-decoration: none;
    color: inherit;
}

.post-content h2 a:hover {
    color: #a8616b;
}

.post-excerpt {
    color: #6c6c6c;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: #999;
    font-size: 0.9rem;
}

.about-page {
    padding: 2rem 0;
}

.team-section {
    padding: 2rem 0;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #8b4a6b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #6c6c6c;
    margin-bottom: 1rem;
}

.company-story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.company-story h2 {
    color: #8b4a6b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.company-story p {
    color: #6c6c6c;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-page {
    padding: 2rem 0;
    min-height: 60vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-info h2 {
    color: #8b4a6b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #8b4a6b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6c6c6c;
    line-height: 1.5;
}

.contact-item a {
    color: #a8616b;
    text-decoration: none;
}

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

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

.contact-form-section h2 {
    color: #8b4a6b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #f0c7ce;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8616b;
}

.submit-btn {
    background: linear-gradient(135deg, #a8616b, #8b4a6b);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 74, 107, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.modal-content h2 {
    color: #8b4a6b;
    margin-bottom: 1rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #8b4a6b;
}

.blog-post {
    padding: 2rem 0;
}

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

.post-header h1 {
    color: #8b4a6b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-post .post-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.blog-post .post-content h2 {
    color: #8b4a6b;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.blog-post .post-content h3 {
    color: #a8616b;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.blog-post .post-content p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.post-navigation {
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog,
.prev-post,
.next-post {
    color: #a8616b;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #a8616b;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-blog:hover,
.prev-post:hover,
.next-post:hover {
    background: #a8616b;
    color: white;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 1rem;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #f8e1e6;
}

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#acceptAll {
    background: #a8616b;
    color: white;
}

#configure {
    background: #6c6c6c;
    color: white;
}

#decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-nav-links {
        justify-content: center;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .services-grid,
    .posts-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .blog-post .post-content {
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}
