/* 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: #333;
    background: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1B365D, #2C5AA0);
    color: white;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-option span {
    font-size: 0.9em;
    color: #666;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-large {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #2C5AA0, #1B365D);
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1B365D, #0F1F35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #4A90A4;
    color: white;
}

.btn-secondary:hover {
    background: #2E5266;
}

.btn-outline {
    background: linear-gradient(135deg, #4A90A4, #2E5266);
    color: white;
    border: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #2E5266, #1A3A45);
    transform: translateY(-2px);
}

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1B365D;
}

.nav-brand i {
    color: #2C5AA0;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2C5AA0;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1B365D;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.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 {
    max-width: 800px;
    padding: 40px 30px;
    z-index: 1;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    color: #ffffff;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    color: #ffffff;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5em;
    color: #1B365D;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* About Section */
.about-preview {
    background: #f8f9fa;
}

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

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

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

.about-card i {
    font-size: 3em;
    color: #2C5AA0;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5em;
    color: #1B365D;
    margin-bottom: 15px;
}

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

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
    border-color: #2C5AA0;
}

.service-card i {
    font-size: 2.5em;
    color: #2C5AA0;
    margin-bottom: 20px;
}

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

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 2.5em;
    color: #2C5AA0;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3em;
    color: #1B365D;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2C5AA0;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
}

.review-author i {
    font-size: 1.5em;
    color: #2C5AA0;
}

/* Contact Preview Section */
.contact-preview {
    background: #f8f9fa;
}

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

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2.5em;
    color: #2C5AA0;
    margin-bottom: 15px;
}

.contact-item h4 {
    color: #1B365D;
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1B365D, #0F1F35);
    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-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2em;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

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

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

.social-links a:hover {
    background: #2C5AA0;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2C5AA0, #1B365D);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    padding: 80px 0;
}

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

.story-text h2 {
    font-size: 2.5em;
    color: #1B365D;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.story-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2C5AA0;
    font-weight: 600;
}

.story-svg {
    width: 100%;
    height: 300px;
}

/* Mission Values */
.mission-values {
    background: #f8f9fa;
    padding: 80px 0;
}

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

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

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

.value-card i {
    font-size: 3em;
    color: #2C5AA0;
    margin-bottom: 20px;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

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

.member-avatar {
    margin-bottom: 20px;
}

.member-avatar i {
    font-size: 5em;
    color: #2C5AA0;
}

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

.member-title {
    color: #2C5AA0;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-qualifications {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.member-specialties span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    color: #555;
}

/* Why Choose Detailed */
.why-choose-detailed {
    background: #f8f9fa;
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    gap: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 2.5em;
    color: #2C5AA0;
}

.advantage-content h3 {
    color: #1B365D;
    margin-bottom: 10px;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

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

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

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3em;
    color: #2C5AA0;
}

.service-detail-card h3 {
    color: #1B365D;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #2C5AA0;
    font-size: 0.9em;
}

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.service-price span {
    font-size: 1.3em;
    font-weight: 700;
    color: #2C5AA0;
}

/* Process Section */
.our-process {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C5AA0, #1B365D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #1B365D;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C5AA0, #1B365D);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

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

/* Active Navigation */
.nav-links a.active {
    color: #2C5AA0;
    font-weight: 700;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

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

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

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    color: #2C5AA0;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-content h2 {
    margin-bottom: 15px;
    font-size: 1.4em;
}

.blog-content h2 a {
    color: #1B365D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #2C5AA0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.newsletter-content h2 {
    color: #1B365D;
    margin-bottom: 15px;
    font-size: 2em;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2C5AA0;
}

/* Contact Form Styling */
.contact-form-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    color: #1B365D;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

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

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

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-detailed {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-detailed h3 {
    color: #1B365D;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-detail i {
    color: #2C5AA0;
    font-size: 1.5em;
    margin-top: 3px;
}

.contact-detail h4 {
    color: #1B365D;
    margin-bottom: 5px;
}

.contact-detail p {
    color: #666;
    margin-bottom: 10px;
}

.contact-detail a {
    color: #2C5AA0;
    text-decoration: none;
}

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

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-section h2 {
    color: #1B365D;
    margin-bottom: 40px;
    font-size: 2.2em;
    text-align: center;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-svg {
    width: 100%;
    height: 400px;
}

.map-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-details h3 {
    color: #1B365D;
    margin-bottom: 20px;
}

.map-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1B365D;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
}

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

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

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

.thank-you-icon i {
    font-size: 5em;
    color: #28a745;
}

.thank-you-content h1 {
    font-size: 3em;
    color: #1B365D;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.submission-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.submission-details h2 {
    color: #1B365D;
    margin-bottom: 30px;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step i {
    font-size: 2.5em;
    color: #2C5AA0;
    margin-bottom: 15px;
}

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

.submission-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: left;
}

.submission-summary h3 {
    color: #1B365D;
    margin-bottom: 20px;
    text-align: center;
}

.summary-grid {
    display: grid;
    gap: 15px;
}

.summary-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.full-width {
    grid-column: 1 / -1;
}

.summary-item strong {
    color: #333;
    margin-right: 10px;
}

.contact-alternatives {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-alternatives h3 {
    color: #1B365D;
    margin-bottom: 15px;
}

.urgent-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.return-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-resources {
    background: #f8f9fa;
    padding: 80px 0;
}

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

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

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

.resource-card i {
    font-size: 2.5em;
    color: #2C5AA0;
    margin-bottom: 20px;
}

.resource-card h3 {
    color: #1B365D;
    margin-bottom: 15px;
}

.resource-link {
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 10px;
}

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

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.document-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #2C5AA0;
}

.document-meta p {
    margin-bottom: 5px;
    color: #666;
}

.legal-document h2 {
    color: #1B365D;
    margin: 40px 0 20px 0;
    font-size: 1.8em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.legal-document h3 {
    color: #2C5AA0;
    margin: 30px 0 15px 0;
    font-size: 1.3em;
}

.legal-document p {
    margin-bottom: 20px;
    color: #555;
}

.legal-document ul {
    margin: 20px 0 20px 30px;
}

.legal-document li {
    margin-bottom: 10px;
    color: #555;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

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

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background: #2C5AA0;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-management-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cookie-management-section h2 {
    color: #1B365D;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.cookie-management-section p {
    margin-bottom: 25px;
    color: #666;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #2C5AA0, #1B365D);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.article-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
}

.article-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: white;
}

.separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.6);
}

.article-header h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95em;
    opacity: 0.9;
}

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

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

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-main {
    max-width: none;
}

.article-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-svg {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-body {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2em;
    color: #666;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2C5AA0;
}

.article-body h2 {
    color: #1B365D;
    margin: 40px 0 20px 0;
    font-size: 1.8em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.article-body h3 {
    color: #2C5AA0;
    margin: 30px 0 15px 0;
    font-size: 1.3em;
}

.article-body p {
    margin-bottom: 20px;
    color: #555;
}

.article-body ul {
    margin: 20px 0 20px 30px;
}

.article-body li {
    margin-bottom: 10px;
    color: #555;
}

.article-conclusion {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.article-conclusion h2 {
    color: #1B365D;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.article-conclusion p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

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

.author-info,
.related-articles,
.contact-cta {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.author-avatar i {
    font-size: 4em;
    color: #2C5AA0;
}

.author-info h3 {
    color: #1B365D;
    margin-bottom: 5px;
    text-align: center;
}

.author-title {
    color: #2C5AA0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.author-info p {
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.related-articles h3,
.contact-cta h3 {
    color: #1B365D;
    margin-bottom: 20px;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.related-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-articles a {
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #1B365D;
}

.contact-cta {
    text-align: center;
}

.contact-cta p {
    margin-bottom: 10px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .about-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}