/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3d6b;
}

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

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

.btn-primary {
    background-color: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background-color: #1e3d6b;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

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

.btn-outline:hover {
    background-color: #2c5aa0;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3d6b;
    color: white;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    padding: 0 20px;
    gap: 20px;
}

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

.cookie-buttons button {
    font-size: 14px;
    padding: 8px 16px;
}

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    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: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.cookie-category h3 {
    margin-bottom: 10px;
    color: #2c5aa0;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    padding: 15px 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

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

.nav-menu a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-text h1 {
    font-size: 3rem;
    color: #1e3d6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6b 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
}

.page-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3d6b;
    margin: 20px 0 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.section-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1e3d6b;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

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

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

.about-text h2 {
    font-size: 2.2rem;
    color: #1e3d6b;
    margin: 20px 0 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.testimonial-card p {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: #1e3d6b;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
}

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

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

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: #1e3d6b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: inherit;
}

.blog-content h3 a:hover {
    color: #2c5aa0;
}

.blog-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #2c5aa0;
    font-weight: 600;
}

.blog-more {
    text-align: center;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6b 100%);
    color: white;
}

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

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: grid;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.3);
}

/* Contact */
.contact {
    padding: 80px 0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-item img {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.contact-item h3 {
    color: #1e3d6b;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6c757d;
}

/* Footer */
footer {
    background-color: #1e3d6b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

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

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
}

/* Blog Page */
.blog-main {
    padding: 40px 0 80px;
}

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

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.article-content {
    padding: 30px;
}

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

.article-date, .article-category {
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: #1e3d6b;
    margin-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
}

.category-list, .recent-posts, .related-articles, .useful-links, .important-dates {
    list-style: none;
}

.category-list li, .recent-posts li, .related-articles li, .useful-links li, .important-dates li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8f9fa;
}

.category-list li:last-child, .recent-posts li:last-child, .related-articles li:last-child, .useful-links li:last-child, .important-dates li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a, .related-articles a, .useful-links a {
    display: block;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-posts a:hover, .related-articles a:hover, .useful-links a:hover {
    color: #2c5aa0;
}

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

.cta-widget {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6b 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

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

.article-header {
    margin-bottom: 40px;
}

.breadcrumb {
    color: #6c757d;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #2c5aa0;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1e3d6b;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.article-header .article-image {
    margin: 30px 0;
    text-align: center;
}

.article-header .article-image img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.article-content {
    display: grid;

    gap: 60px;
}

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

.article-text .lead {
    font-size: 1.3rem;
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-text h2 {
    color: #1e3d6b;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.article-text h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-text h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.article-text ul, .article-text ol {
    margin: 20px 0 20px 30px;
}

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

.formula {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #2c5aa0;
    margin: 25px 0;
    font-size: 1.2rem;
    text-align: center;
}

.calculation-example {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}

.example-structure {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.example-structure h4 {
    color: #2c5aa0;
    margin: 15px 0 10px;
}

.article-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6b 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

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

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f8f9fa;
}

/* About Page */
.about-main {
    padding: 40px 0 80px;
}

.company-history {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.history-image img {
    width: 100%;
    max-width: 300px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2c5aa0;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -12px;
    background-color: #2c5aa0;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: #1e3d6b;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

.values {
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.value-card h3 {
    color: #1e3d6b;
    margin-bottom: 15px;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

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

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

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-member img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.team-member h3 {
    color: #1e3d6b;
    margin-bottom: 5px;
}

.team-member p {
    color: #6c757d;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Legal Pages */
.legal-content {
    padding: 40px 0 80px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-text h2 {
    color: #1e3d6b;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.legal-text h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

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

.legal-text ul, .legal-text ol {
    margin: 20px 0 20px 30px;
}

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

.legal-footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border-left: 4px solid #2c5aa0;
}

.cookie-settings-link {
    text-align: center;
    margin: 40px 0;
}

/* Thanks Page */
.thanks-page {
    padding: 60px 0 80px;
}

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

.thanks-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(93%) saturate(588%) hue-rotate(88deg) brightness(118%) contrast(119%);
}

.thanks-content h1 {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 50px;
    line-height: 1.6;
}

.thanks-details {
    margin: 60px 0;
    text-align: left;
}

.thanks-details h2 {
    color: #1e3d6b;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-number {
    background-color: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e3d6b;
    margin-bottom: 10px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-info, .newsletter-info, .social-media, .additional-resources {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.contact-info h2, .newsletter-info h2, .social-media h2, .additional-resources h2 {
    color: #1e3d6b;
    text-align: center;
    margin-bottom: 20px;
}

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

.contact-info .contact-item {
    justify-content: center;
}

.newsletter-info ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.newsletter-info li {
    margin-bottom: 10px;
}

.social-media .social-links {
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: white;
    border-radius: 8px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: none;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.resource-link {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
}

.resource-link img {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(82%) saturate(1654%) hue-rotate(208deg) brightness(95%) contrast(86%);
}

.resource-link strong {
    color: #1e3d6b;
    display: block;
    margin-bottom: 5px;
}

.resource-link p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog-main .container {
        grid-template-columns: 1fr;
    }
    
    .blog-article {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}
