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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.btn-primary:hover {
    background-color: #2d5aa0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 114, 0.3);
}

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

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

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

.btn-outline:hover {
    background-color: #1a4d72;
    color: white;
}

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

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a4d72;
}

.logo svg {
    margin-right: 10px;
}

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

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

.nav a:hover,
.nav a.active {
    color: #1a4d72;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a4d72;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a4d72;
    font-weight: 600;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a4d72;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d72;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card.premium {
    background: linear-gradient(135deg, #1a4d72 0%, #2d5aa0 100%);
    color: white;
}

.service-card.premium::before {
    content: 'PREMIUM';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #ffd700;
    color: #1a4d72;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: #1a4d72;
}

.service-card.premium .service-icon svg {
    color: white;
}

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

.service-card.premium h3 {
    color: white;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features span {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.service-card.premium .service-features span {
    color: rgba(255, 255, 255, 0.8);
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a4d72;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-radius: 25px;
    display: inline-block;
}

.service-card.premium .service-price {
    color: #1a4d72;
    background-color: white;
}

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

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

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #1a4d72;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1a4d72;
    font-weight: 600;
}

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

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d72;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
}

.gallery-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

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

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

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

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-check input[type="checkbox"] {
    margin: 0;
}

.form-check a {
    color: #ffd700;
    text-decoration: underline;
}

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

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a4d72;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    color: #1a4d72;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: #1a4d72;
    margin-bottom: 0.5rem;
    display: block;
}

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

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a4d72;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #2d5aa0;
    transform: translateY(-2px);
}

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

.contact-form h3 {
    color: #1a4d72;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a4d72;
}

.contact-form input,
.contact-form select {
    margin-bottom: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a4d72 0%, #2d5aa0 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

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

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

.featured-tag {
    background-color: #ffd700;
    color: #1a4d72;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a4d72;
}

.featured-text h2 a {
    color: inherit;
}

.featured-text h2 a:hover {
    color: #2d5aa0;
}

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

.blog-articles {
    padding: 80px 0;
    background-color: white;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d72;
}

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

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

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

.article-image {
    height: 250px;
    overflow: hidden;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    background-color: #1a4d72;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a4d72;
}

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

.article-content h3 a:hover {
    color: #2d5aa0;
}

.read-more {
    color: #1a4d72;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2d5aa0;
}

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

.blog-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d72;
}

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

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

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

.category-icon {
    margin-bottom: 1rem;
}

.category-icon svg {
    color: #1a4d72;
}

.category-card h3 {
    color: #1a4d72;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
}

.article-count {
    background-color: #1a4d72;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a4d72 0%, #2d5aa0 100%);
    color: white;
}

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

.blog-newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.blog-newsletter .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
}

.article-meta {
    margin-bottom: 1rem;
}

.back-to-blog {
    color: #1a4d72;
    font-weight: 600;
    margin-right: 1rem;
}

.back-to-blog:hover {
    color: #2d5aa0;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1a4d72;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.article-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #1a4d72;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.article-share a:hover {
    background-color: #2d5aa0;
    transform: translateY(-2px);
}

.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-body h2 {
    font-size: 1.8rem;
    color: #1a4d72;
    margin: 2.5rem 0 1.5rem;
}

.article-body h3 {
    font-size: 1.3rem;
    color: #1a4d72;
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #555;
}

.article-body blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #1a4d72;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.article-cta {
    background: linear-gradient(135deg, #1a4d72 0%, #2d5aa0 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white !important;
    margin-bottom: 1rem !important;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem !important;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.related-articles h3 {
    color: #1a4d72;
    margin-bottom: 2rem;
}

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

.related-article {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.related-article:hover {
    background-color: #e9ecef;
}

.related-article h4 {
    margin-bottom: 0.5rem;
}

.related-article h4 a {
    color: #1a4d72;
}

.related-article h4 a:hover {
    color: #2d5aa0;
}

.related-article p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

/* Legal Page Styles */
.legal-page {
    padding: 120px 0 60px;
    background-color: white;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    color: #1a4d72;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-size: 1rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a4d72;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #1a4d72;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #1a4d72;
    margin: 1.5rem 0 0.75rem;
}

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

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.75rem;
    color: #555;
}

.legal-content strong {
    color: #1a4d72;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-details h4 {
    color: #1a4d72;
    margin-bottom: 1rem;
}

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

.terms-acknowledgment {
    background-color: #e7f3ff;
    border: 2px solid #1a4d72;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.terms-acknowledgment p {
    margin-bottom: 0;
    color: #1a4d72;
    text-align: center;
}

.cookie-details-table {
    margin: 2rem 0;
}

.cookie-details-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.cookie-details-table th {
    background-color: #f8f9fa;
    color: #1a4d72;
    font-weight: 600;
}

.cookie-settings-link {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.cookie-settings-link h3 {
    color: #1a4d72;
    margin-bottom: 1rem;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    font-size: 2.5rem;
    color: #1a4d72;
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.what-next {
    margin: 3rem 0;
    text-align: left;
}

.what-next h2 {
    color: #1a4d72;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.step-icon {
    margin-bottom: 1rem;
}

.step-icon svg {
    color: #1a4d72;
}

.step h3 {
    color: #1a4d72;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.subscriber-benefits {
    margin: 3rem 0;
}

.subscriber-benefits h2 {
    color: #1a4d72;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit svg {
    color: #1a4d72;
    flex-shrink: 0;
}

.benefit span {
    color: #555;
    font-weight: 500;
}

.cta-section {
    margin: 3rem 0;
}

.cta-section h2 {
    color: #1a4d72;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .featured-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid,
    .articles-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .article-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: 80vh;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .testimonials h2,
    .gallery h2,
    .blog-articles h2,
    .blog-categories h2 {
        font-size: 2rem;
    }

    .newsletter h2,
    .blog-newsletter h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .thank-you h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-icons,
    .article-share,
    .back-to-blog {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .legal-page,
    .article-content {
        padding: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    p, li {
        page-break-inside: avoid;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }

    .nav a::after {
        height: 3px;
    }

    .service-card,
    .testimonial,
    .article-card,
    .category-card {
        border: 2px solid #333;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #1a4d72;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
