/* Base Styles */
:root {
    --primary-color: #2c5282;
    --secondary-color: #4299e1;
    --accent-color: #f56565;
    --light-color: #f7fafc;
    --dark-color: #2d3748;
    --gray-color: #a0aec0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition-speed: 0.3s;
    --content-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 20px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

ul, ol {
    margin: 0 0 20px 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
    font-size: 16px;
}

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

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

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

.secondary-btn:hover {
    background-color: #2b6cb0;
    color: white;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(45, 55, 72, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner h3 {
    margin-bottom: 10px;
}

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

.cookie-settings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.cookie-option p {
    margin-left: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hidden {
    display: none;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

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

.main-nav a.active {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-content {
    max-width: 600px;
    color: var(--dark-color);
    z-index: 1;
    padding: 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

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

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

.service-icon img {
    height: 60px;
}

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

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

.vehicle-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

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

.vehicle-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
}

.vehicle-image img {
    max-height: 100%;
    object-fit: contain;
}

.vehicle-details {
    padding: 20px;
}

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

.vehicle-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.vehicle-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vehicle-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Why Choose Us Section */
.choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-us-text .reason {
    display: flex;
    margin-bottom: 30px;
}

.choose-us-text i {
    font-size: 24px;
    color: var(--success-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.choose-us-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.choose-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #f6e05e;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-author p {
    color: var(--gray-color);
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #ebf8ff;
}

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

.newsletter-form {
    margin-top: 30px;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

.form-check {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Blog Preview Section */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-preview-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.blog-preview-date {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.blog-preview-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-preview-excerpt {
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: transform var(--transition-speed);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 70px 0 20px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: #a0aec0;
    transition: color var(--transition-speed);
}

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

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.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-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

/* Page Banner */
.page-banner {
    background-color: #ebf8ff;
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.mission-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.mission-card ul {
    margin-left: 20px;
}

.mission-card li {
    margin-bottom: 10px;
}

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

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

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

.feature-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

.team-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-dot {
    position: absolute;
    left: -38.5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 5px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Fleet Page Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.category-card:hover, .category-card.active {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-card:hover h3, .category-card:hover p,
.category-card:hover .category-icon, .category-card.active h3,
.category-card.active p, .category-card.active .category-icon {
    color: #fff;
}

.category-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color var(--transition-speed);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.category-card p {
    font-size: 14px;
    color: var(--gray-color);
    transition: color var(--transition-speed);
}

.filter-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    margin-top: 20px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-size: 16px;
}

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

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    align-items: center;
}

.spec-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.vehicle-price {
    font-weight: 600;
    margin-bottom: 20px;
}

.vehicle-price span {
    color: var(--primary-color);
    font-size: 24px;
}

/* Services Page Styles */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insurance-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.insurance-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.insurance-recommendation {
    font-weight: 600;
    color: var(--success-color);
    margin-top: 15px;
}

/* How It Works Section */
.steps-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 50px;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.step {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    width: 18%;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.step p {
    color: var(--gray-color);
    font-size: 14px;
}

.step-connector {
    display: none;
}
.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

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

.service-features i {
    color: var(--success-color);
    margin-right: 10px;
}

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

.additional-service-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.service-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 14px;
    margin: 0;
}

.blog-view-all {
    text-align: center;
    margin-top: 30px;
}

.special-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.program-card ul {
    margin-bottom: 20px;
}

.program-card li {
    margin-bottom: 8px;
}

.gray-bg {
    background-color: #f7fafc;
}

/* Blog Page Styles */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-heading h2 {
    margin: 0;
    color: var(--primary-color);
}

.filter-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-options select {
    padding: 10px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-size: 16px;
}

.search-container {
    display: flex;
    position: relative;
}

.search-container input {
    padding: 10px;
    padding-right: 40px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-size: 16px;
    width: 200px;
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
}

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

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

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

.blog-date {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.pagination-btn.active, .pagination-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.next {
    width: auto;
    padding: 0 15px;
}

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

.topic-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

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

.topic-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.topic-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 15px;
}

.topic-link i {
    margin-left: 5px;
    transition: transform var(--transition-speed);
}

.topic-link:hover i {
    transform: translateX(5px);
}

/* Blog Article Styles */
.blog-article-section {
    padding: 50px 0;
}

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

.article-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray-color);
}

.article-meta i {
    margin-right: 5px;
}

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

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

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

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

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

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

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

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

.content-with-icon {
    display: flex;
    margin-bottom: 30px;
}

.content-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
    padding-top: 5px;
}

.content-text h3 {
    margin-top: 0;
}

.article-quote {
    padding: 30px;
    margin: 40px 0;
    background-color: #ebf8ff;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 20px;
    color: var(--primary-color);
}

.article-quote p {
    margin: 0;
}

.info-box {
    display: flex;
    background-color: #edf2f7;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.info-box.warning {
    background-color: #fff5f5;
}

.info-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.info-box.warning .info-icon {
    color: var(--danger-color);
}

.info-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.info-content p {
    margin: 0;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.two-column-list ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.two-column-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.two-column-list i {
    color: var(--success-color);
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.checkmark-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

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

.info-column {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-column h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-cta {
    background-color: #e6fffa;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

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

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

.article-cta .btn {
    margin-top: 10px;
}

.article-author-bio {
    display: flex;
    align-items: center;
    background-color: #f7fafc;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    margin: 0;
}

.related-articles {
    margin-top: 70px;
}

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

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

/* Contact Page Styles */
.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-links-contact {
    margin-top: 30px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

.contact-form .form-check {
    margin-bottom: 20px;
}

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

.location-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.location-card p {
    margin-bottom: 10px;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f7fafc;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table tr:hover {
    background-color: #f7fafc;
}

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

.thank-you-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 30px;
}

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

.thank-you-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Error Page Styles */
.error-section {
    text-align: center;
    padding: 80px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-section h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

.px-1 { padding-left: 10px; padding-right: 10px; }
.px-2 { padding-left: 20px; padding-right: 20px; }
.px-3 { padding-left: 30px; padding-right: 30px; }
.px-4 { padding-left: 40px; padding-right: 40px; }
.px-5 { padding-left: 50px; padding-right: 50px; }

.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-gray { color: var(--gray-color); }

.bg-light { background-color: var(--light-color); }
.bg-primary { background-color: var(--primary-color); color: white; }
.bg-secondary { background-color: var(--secondary-color); color: white; }
.bg-success { background-color: var(--success-color); color: white; }
.bg-gray { background-color: #f7fafc; }

.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.rounded { border-radius: 10px; }
.border { border: 1px solid var(--gray-color); }

.font-sm { font-size: 14px; }
.font-md { font-size: 16px; }
.font-lg { font-size: 18px; }
.font-xl { font-size: 24px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.transition { transition: all var(--transition-speed); }