/* Base Styles and Reset */
:root {
    --primary-color: #0056b3;
    --secondary-color: #e63946;
    --accent-color: #fcbf49;
    --text-color: #333;
    --light-text: #777;
    --dark-bg: #1d3557;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

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

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

ul {
    list-style: none;
}

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

section {
    padding: 60px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

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

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

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

.btn-tertiary:hover {
    background-color: #f0f0f0;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    color: var(--white);
    background-image: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.9)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

/* Countdown Timer */
.countdown-container {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

#countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.time-unit {
    margin: 0 15px;
    text-align: center;
}

.time-unit span {
    display: block;
}

.time-unit span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 10px 15px;
    min-width: 60px;
}

.time-unit .label {
    font-size: 0.9rem;
    margin-top: 5px;
    color: var(--accent-color);
}

/* Features Section */
.features {
    background-color: var(--white);
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
}

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

.feature-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--white);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Recent Posts Section */
.recent-posts {
    background-color: var(--light-bg);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.post-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 20px;
}

.testimonial-slider::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin: 0 15px;
    scroll-snap-align: center;
}

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

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

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

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a, .footer-legal ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
}

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

.footer-contact address p i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

.footer-bottom p {
    margin-bottom: 0;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-left: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    z-index: 9999;
    display: none;
}

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

.cookie-content h4 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.cookie-content a {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.9)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

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

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

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

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.categories span {
    font-weight: 600;
}

.categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.categories ul li a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.blog-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-details {
    padding: 20px;
}

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

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

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

.blog-details h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-details p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination a:hover, .pagination span.current {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.subscribe-section {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.subscribe-section h3 {
    margin-bottom: 15px;
}

.subscribe-section p {
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

/* About Page */
.about-content {
    background-color: var(--white);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    margin-bottom: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.mission, .vision, .values {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission:hover, .vision:hover, .values:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission i, .vision i, .values i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.team-section h2 {
    margin-bottom: 40px;
}

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

.team-member {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: auto;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

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

.team-member p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

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

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

.credentials h2 {
    margin-bottom: 40px;
}

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

.credential {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.credential:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.credential i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
}

/* Services Page */
.services-overview {
    background-color: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-content h3 {
    margin-bottom: 15px;
}

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

.service-content ul {
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 5px;
}

.pricing {
    background-color: var(--light-bg);
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.pricing-header {
    padding: 30px;
    background-color: var(--dark-bg);
    color: var(--white);
}

.pricing-header h3 {
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    margin-left: 5px;
    opacity: 0.7;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    text-align: left;
}

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

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li.disabled {
    color: var(--light-text);
}

.pricing-action {
    padding: 0 30px 30px;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--light-text);
}

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

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.cta {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    background-image: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.9)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
}

.cta h2 {
    margin-bottom: 15px;
}

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

/* Contact Page */
.contact-content {
    background-color: var(--white);
}

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

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

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

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 5px;
}

.text-muted {
    color: var(--light-text);
    font-size: 0.9rem;
}

.social-connect h3 {
    margin-bottom: 15px;
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

.map-section {
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-contact {
    background-color: var(--white);
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.thankyou-content i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thankyou-content h2 {
    margin-bottom: 15px;
}

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

/* Blog Post Styles */
.blog-post {
    background-color: var(--white);
}

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

.post-header h1 {
    margin-bottom: 15px;
}

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

.post-meta span {
    display: flex;
    align-items: center;
}

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

.featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.post-content .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

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

.post-content li strong {
    font-weight: 600;
}

.info-box, .quote-box {
    margin: 30px 0;
    padding: 20px;
    border-radius: var(--border-radius);
}

.info-box {
    background-color: #e6f3ff;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: var(--primary-color);
}

.info-box h3 i {
    margin-right: 10px;
}

.quote-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
}

.quote-box blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

.quote-box cite {
    display: block;
    text-align: right;
    font-weight: 600;
}

.author-bio {
    margin-top: 60px;
    display: flex;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.author-bio h3 {
    margin-bottom: 5px;
}

.post-tags {
    margin: 40px 0;
}

.post-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-right: 5px;
    margin-bottom: 5px;
    transition: var(--transition);
}

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

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

.share-post span {
    font-weight: 600;
    margin-right: 15px;
}

.share-post a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--text-color);
    margin-right: 10px;
    transition: var(--transition);
}

.share-post a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.prev-post, .next-post {
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.next-post {
    text-align: right;
}

.post-navigation span {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.related-posts {
    margin-bottom: 60px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.related-post {
    display: block;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h3 {
    padding: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

.comments-section {
    margin-bottom: 60px;
}

.comments-section h2 {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

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

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-header span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.reply-btn {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.leave-comment {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.leave-comment h3 {
    margin-bottom: 20px;
}

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

.comment-form .form-group.full-width {
    grid-column: 1 / -1;
}

.comment-form .checkbox-group {
    grid-column: 1 / -1;
}

.comment-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Special Page Elements */
.provider-ranking {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.provider-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.provider-logo {
    width: 100px;
    height: 50px;
    margin-right: 20px;
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.provider-rating {
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.comparison-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

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

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .next-post {
        text-align: left;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-grid, .post-grid, .team-grid, .credentials-grid, .pricing-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .time-unit span:first-child {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .social-icons {
        margin-top: 15px;
    }
    
    .blog-filters .categories {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        margin-bottom: 10px;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin: 0 auto 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        margin-bottom: 10px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .post-card, .testimonial, .team-member, .credential, .service-card, .pricing-card {
    animation: fadeIn 0.5s ease forwards;
}

.feature-card:nth-child(2), .post-card:nth-child(2), .testimonial:nth-child(2), .team-member:nth-child(2), .credential:nth-child(2), .service-card:nth-child(2), .pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3), .post-card:nth-child(3), .testimonial:nth-child(3), .team-member:nth-child(3), .credential:nth-child(3), .service-card:nth-child(3), .pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4), .post-card:nth-child(4), .team-member:nth-child(4), .credential:nth-child(4), .service-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Button Hover Light Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

/* FAQ 2x2 grid and icons */
.faq-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.faq-item {
    display: flex;
    align-items: flex-start;
    background: var(--light-bg, #f8fafc);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 170px;
}
.faq-item:hover {
    box-shadow: 0 8px 32px 0 rgba(0,86,179,0.13);
    transform: translateY(-4px) scale(1.02);
}
.faq-icon {
    font-size: 2.2rem;
    color: var(--primary-color, #0056b3);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}
.faq-item h3 {
    margin-bottom: 8px;
    color: var(--primary-color, #0056b3);
    font-size: 1.15rem;
}
@media (max-width: 900px) {
    .faq-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Thanks Page Styles */
.thanks {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: var(--white);
    text-align: center;
}

.thanks-content {
    padding: 40px 20px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.thanks h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.thanks p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-actions .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.thanks-actions .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.thanks-actions .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .thanks h1 {
        font-size: 2.5rem;
    }
    
    .thanks p {
        font-size: 1.1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Car Selection and Contact Section */
.car-selection-contact {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4fd 100%);
    padding: 80px 0;
    animation: fadeIn 1s ease-in-out;
}

.car-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.car-selection-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    animation: slideInLeft 0.8s ease-out;
}

.car-selection-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--light-text);
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.car-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.car-category {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.car-category:nth-child(2) {
    animation-delay: 0.6s;
}

.car-category:nth-child(3) {
    animation-delay: 0.8s;
}

.car-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.car-category h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.car-category > p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.car-category ul {
    list-style: none;
    padding: 0;
}

.car-category ul li {
    padding: 5px 0;
    color: var(--light-text);
    position: relative;
    padding-left: 20px;
}

.car-category ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.quick-contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out 0.4s both;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transition: all 0.3s ease;
}

.quick-contact-form:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.quick-contact-form::-webkit-scrollbar {
    width: 6px;
}

.quick-contact-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.quick-contact-form::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.quick-contact-form::-webkit-scrollbar-thumb:hover {
    background: #004494;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Car Selection */
@media (max-width: 992px) {
    .car-selection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .car-selection-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .car-selection-contact {
        padding: 60px 0;
    }
    
    .car-selection-content h2 {
        font-size: 1.8rem;
    }
    
    .car-category {
        padding: 20px;
    }
    
    .quick-contact-form {
        padding: 25px 20px;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .car-category i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .car-selection-content h2 {
        font-size: 1.6rem;
    }
    
    .car-selection-content p {
        font-size: 1rem;
    }
    
    .quick-contact-form h3 {
        font-size: 1.3rem;
    }
}
