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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

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

h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
    color: #555555;
}

a {
    text-decoration: none;
    color: #2563eb;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4b5563;
    color: #ffffff;
}

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

.btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #ffffff;
}

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

.cookie-buttons .btn {
    white-space: nowrap;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

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

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-graphic {
    max-width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666666;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

/* Grid Layouts */
.info-grid,
.services-grid,
.advantages-grid,
.testimonials-grid,
.blog-grid,
.values-grid,
.team-grid,
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-grid {
    justify-content: space-between;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.services-grid {
    justify-content: space-between;
}

.service-card {
    flex: 1;
    min-width: 350px;
    max-width: 380px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantages-grid {
    justify-content: space-between;
}

.advantage-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    background-color: #f8fafc;
}

.testimonials-grid {
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    min-width: 350px;
    max-width: 380px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #333333;
}

.testimonial-card cite {
    font-style: normal;
    color: #666666;
}

/* Blog Section */
.blog-grid {
    justify-content: space-between;
}

.blog-card {
    flex: 1;
    min-width: 400px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #1a1a1a;
}

.blog-content h3 a:hover {
    color: #2563eb;
}

.read-more {
    color: #2563eb;
    font-weight: 500;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Subscription Section */
.subscription {
    background-color: #2563eb;
    color: #ffffff;
}

.subscription-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.subscription-text {
    flex: 1;
}

.subscription-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.subscription-text p {
    color: #e2e8f0;
    font-size: 1.125rem;
}

.subscription-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

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

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d1d5db;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #4b5563;
    border-radius: 4px;
    background-color: #374151;
    color: #ffffff;
}

.newsletter-input input::placeholder {
    color: #9ca3af;
}

.newsletter-input button {
    padding: 10px 20px;
}

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

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
}

/* About Page Styles */
.page-hero {
    background-color: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    text-align: center;
}

.team-illustration {
    max-width: 100%;
    height: auto;
}

.mission-values {
    background-color: #f8fafc;
}

.values-grid {
    justify-content: space-between;
}

.value-card {
    flex: 1;
    min-width: 350px;
    max-width: 380px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.leadership-team {
    padding: 80px 0;
}

.team-grid {
    justify-content: space-between;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.member-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 15px;
}

.achievements {
    background-color: #f8fafc;
}

.achievements-grid {
    justify-content: space-between;
}

.achievement-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.cta-section {
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Thank You Page Styles */
.thank-you-page {
    padding: 80px 0;
    text-align: center;
}

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

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

.thank-you-content h1 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    margin: 60px 0;
}

.steps-list {
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background-color: #2563eb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.thank-you-actions {
    margin: 60px 0;
}

.action-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 30px;
}

.action-card {
    flex: 1;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.contact-info {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.return-home {
    margin-top: 40px;
}

/* Article Page Styles */
.article-page {
    padding: 40px 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666666;
}

.category {
    background-color: #2563eb;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.article-lead {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

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

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.article-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
    color: #555555;
}

.article-cta {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.article-cta h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.article-cta p {
    color: #666666;
    margin-bottom: 25px;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.author-info {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.author-info h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Legal Page Styles */
.legal-page {
    padding: 40px 0;
}

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

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

.last-updated {
    color: #666666;
    font-style: italic;
}

.legal-body {
    line-height: 1.8;
}

.legal-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.legal-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-body ul,
.legal-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-body li {
    margin-bottom: 8px;
    color: #555555;
}

.contact-details {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

.policy-footer {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 5px;
    color: #666666;
}

/* Cookie Policy Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table tr:hover {
    background-color: #f9fafb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .info-grid,
    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .achievements-grid {
        flex-direction: column;
    }
    
    .subscription-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .story-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .action-cards {
        flex-direction: column;
    }
    
    .article-nav {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .featured-image {
        max-width: 100%;
    }
}
