/* Base Styles */
:root {
    --primary-color: #005b96;
    --secondary-color: #6497b1;
    --tertiary-color: #b3cde0;
    --accent-color: #ffe66d;
    --text-color: #333;
    --text-light: #666;
    --background-color: #fff;
    --background-light: #f8f9fa;
    --background-dark: #e9ecef;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #004c7d;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #5386a0;
    color: white;
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px var(--shadow-color);
    z-index: 1000;
    padding: 20px;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

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

.cookie-settings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cookie-settings.hidden {
    display: none;
}

.cookie-settings h4 {
    margin-bottom: 15px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: 500;
    margin-left: 10px;
}

.cookie-option p {
    margin-left: 28px;
    font-size: 14px;
    color: var(--text-light);
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--background-light);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

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

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

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
}

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

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 18px;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.service-card {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card img {
    height: 100px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 30px;
    position: relative;
}

.process-step img {
    height: 80px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 30px;
    margin: 20px;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--primary-color);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

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

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

.blog-card {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item svg {
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: var(--primary-color);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 24px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-contact .contact-item {
    margin-bottom: 15px;
}

.footer-contact .contact-item svg {
    margin-right: 15px;
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

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

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

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    text-align: right;
    margin-bottom: 30px;
    color: var(--text-light);
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--background-light);
    font-weight: 500;
}

/* Blog Page */
.blog-content {
    padding: 60px 0;
}

.blog-filter {
    margin-bottom: 40px;
}

.blog-filter h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.blog-categories li a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--background-light);
    border-radius: 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-categories li a:hover,
.blog-categories li a.active {
    background-color: var(--primary-color);
    color: white;
}

.blog-grid article {
    margin-bottom: 30px;
}

.blog-card-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-newsletter {
    margin-top: 60px;
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter-content p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form-inline .form-group {
    flex: 1;
    margin-bottom: 0;
    margin-right: 10px;
}

.newsletter-privacy {
    font-size: 14px;
    color: var(--text-light);
}

/* Article Page */
.article-header {
    padding: 60px 0 30px;
    background-color: var(--background-light);
}

.article-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.article-category {
    color: var(--primary-color);
    font-weight: 500;
}

.article-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.article-author div {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 500;
}

.article-body h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-body h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.article-body ul,
.article-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 10px;
}

.article-highlight {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
}

.article-highlight svg {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.article-quote {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.article-quote blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 10px;
}

.article-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 500;
}

.article-cta {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.article-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.article-tags span {
    font-weight: 500;
    margin-right: 10px;
}

.article-tags ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tags ul li a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--background-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.article-tags ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.article-share span {
    font-weight: 500;
    margin-right: 15px;
}

.related-articles {
    padding: 60px 0;
    background-color: var(--background-light);
}

.related-articles h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.related-article {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.related-article img {
    height: 100px;
    margin-bottom: 15px;
}

.related-article h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.related-article p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

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

.thank-you-content img {
    height: 100px;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.thank-you-content p.highlight {
    color: var(--primary-color);
    font-weight: 500;
    margin: 30px 0;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.whats-next {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.next-step-card {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.next-step-card img {
    height: 80px;
    margin-bottom: 20px;
}

.next-step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-step-card p {
    margin-bottom: 20px;
}

.next-step-card .social-links {
    justify-content: center;
    margin-top: 15px;
}

.next-step-card .social-links a {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.next-step-card .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero .container,
    .about-grid {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .process-steps::before {
        display: none;
    }

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

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

@media (max-width: 768px) {
    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: 0 5px 10px var(--shadow-color);
        padding: 20px;
    }

    nav.active ul {
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .newsletter-form-inline {
        flex-direction: column;
    }

    .newsletter-form-inline .form-group {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .stat-item {
        min-width: 150px;
    }

    .services-grid,
    .blog-grid,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }

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

    .article-header h1 {
        font-size: 28px;
    }

    .article-intro {
        font-size: 18px;
    }

    .article-body h2 {
        font-size: 24px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .thank-you-actions {
        flex-direction: column;
    }
}