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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: #27ae60;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    color: #ffffff;
    max-width: 600px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-primary i, .btn-secondary i {
    margin-right: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

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

/* Company Info Section */
.company-info {
    padding: 5rem 0;
    background: #ecf0f1;
}

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

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

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

.info-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

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

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

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

.service-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

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

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.25rem 0;
    color: #7f8c8d;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #ecf0f1;
}

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

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

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    color: #7f8c8d;
}

.testimonial-author i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: #2c3e50;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.stat-label {
    font-size: 1.1rem;
    color: #bdc3c7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    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,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

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

.social-links a {
    font-size: 1.5rem;
}

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

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* About Page Specific */
.mission {
    padding: 5rem 0;
}

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

.mission-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.point i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.mission-graphic svg {
    width: 100%;
    height: auto;
}

.team {
    padding: 5rem 0;
    background: #ecf0f1;
}

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

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

.member-avatar i {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.member-role {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-specialties {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.member-specialties span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.member-specialties i {
    margin-right: 0.5rem;
    color: #27ae60;
}

.values {
    padding: 5rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Services Page Specific */
.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail.alternate .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail.alternate .service-detail-text {
    order: 2;
}

.service-detail.alternate .service-detail-graphic {
    order: 1;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.service-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    background: #ecf0f1;
    padding: 0.75rem;
    border-radius: 5px;
}

.detail-item i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.service-detail-graphic svg {
    width: 100%;
    height: auto;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: #ecf0f1;
}

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

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

.pricing-card.featured {
    border: 3px solid #27ae60;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    margin: 1rem 0;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #27ae60;
}

.currency {
    font-size: 1.5rem;
    color: #7f8c8d;
}

.price-note {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.features {
    text-align: left;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.feature i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Thank You Page */
.thank-you {
    padding: 8rem 0 5rem;
    text-align: center;
}

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

.thank-you-icon i {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thank-you h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.submitted-info {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.submitted-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.submitted-info i {
    margin-right: 0.5rem;
    color: #27ae60;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    background: #ffffff;
    padding: 1rem;
    border-radius: 5px;
}

.info-item.message {
    grid-column: 1 / -1;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-steps i {
    margin-right: 0.5rem;
    color: #27ae60;
}

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

.step {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
}

.step i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.emergency-contact {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 5px solid #ffc107;
}

.emergency-contact h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-contact i {
    margin-right: 0.5rem;
    color: #ffc107;
}

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

.emergency-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 1rem;
    border-radius: 5px;
}

.emergency-item i {
    margin-right: 0.5rem;
    color: #ffc107;
}

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

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 0;
}

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

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

.blog-card-header {
    background: #27ae60;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

.blog-card-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-excerpt {
    margin: 1rem 0;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Article Page */
.article-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    text-align: center;
}

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

.article-content h2,
.article-content h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.article-content h2 {
    font-size: 1.8rem;
}

.article-content h3 {
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 2rem;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.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;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie.necessary {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie.settings {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie:hover {
    opacity: 0.8;
}

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

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

.cookie-modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

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

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

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail.alternate .service-detail-text,
    .service-detail.alternate .service-detail-graphic {
        order: initial;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: #2c3e50;
    color: #ffffff;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-content i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.newsletter-consent {
    text-align: left;
    margin-top: 1rem;
}

.newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 0.25rem;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
}

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

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

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

.resource-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.breadcrumbs a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #27ae60;
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 0.5rem;
    color: #27ae60;
}

/* Article Intro */
.article-intro {
    background: #ecf0f1;
    padding: 2rem;
    border-left: 5px solid #27ae60;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.article-cta i {
    margin-right: 0.5rem;
}

.article-cta .btn-primary {
    background: #ffffff;
    color: #27ae60;
    margin-top: 1rem;
}

.article-cta .btn-primary:hover {
    background: #ecf0f1;
}

/* Related Articles */
.related-articles {
    padding: 5rem 0;
    background: #ecf0f1;
}

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

.related-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.related-card i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

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

.related-card a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.related-card a:hover {
    color: #27ae60;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-notice,
    .cookie-modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-header,
    .hero {
        padding: 2rem 0;
        background: none !important;
    }
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-inputs {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Legal Page Styles */
.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.contact-details {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.legal-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
    border: 1px solid #ffeaa7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.cookies-table th {
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.cookies-table tr:hover {
    background: #f8f9fa;
}

.cookies-table td:first-child {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-settings-panel {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings-panel h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cookie-settings-panel i {
    margin-right: 0.5rem;
}

.cookie-settings-panel .btn-primary {
    background: #ffffff;
    color: #27ae60;
    margin-top: 1rem;
    border: none;
}

.cookie-settings-panel .btn-primary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 8px 10px;
    }
    
    .contact-details,
    .legal-note,
    .last-updated {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .article-intro {
        padding: 1rem;
    }
    
    .article-cta {
        padding: 1.5rem;
    }
    
    .cookies-table {
        font-size: 0.8rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 6px 8px;
    }
    
    .cookie-settings-panel {
        padding: 1.5rem;
    }
}