/* Base Styles and Variables */
:root {
    --primary-color: #304990;
    --primary-dark: #243670;
    --primary-light: #4F65B0;
    --secondary-color: #8DA9FF;
    --accent-color: #7F63FF;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-light: #F8F9FD;
    --border-color: #E5E7F2;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 3.6rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 2rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--heading-font);
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1.4rem;
}

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

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.logo img {
    height: 5rem;
    width: auto;
}

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

nav li {
    margin-left: 3rem;
}

nav a {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

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

/* Hero Section */
.hero {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.feature-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

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

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

.testimonial-author h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
}

.review-button-container {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 8rem 0;
    background-color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.view-all {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: color var(--transition-fast);
}

.view-all:hover {
    color: var(--primary-dark);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 20rem;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Countdown Section */
.countdown-container {
    background-color: var(--primary-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    color: white;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.countdown-container h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #1D2B58;
    color: white;
    padding: 6rem 0 3rem;
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 5rem;
    width: auto;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.company-info {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-column h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.footer-column ul li {
    margin-bottom: 1rem;
}

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

.footer-column ul li a:hover {
    color: white;
}

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

.footer-column address p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-column address svg {
    margin-right: 1rem;
}

.footer-column address a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-column address a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background-color var(--transition-normal), transform var(--transition-normal);
}

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

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.customize {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.cookie-btn.customize:hover {
    background-color: var(--border-color);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--text-light);
}

.cookie-btn.decline:hover {
    color: var(--text-color);
}

.cookie-policy {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Review Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.review-modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius-md);
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--text-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 1.2rem;
    font-family: var(--body-font);
    font-size: 1.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: border-color var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 3rem;
    font-size: 3rem;
    color: #ddd;
    margin: 0;
}

.rating label:before {
    content: '★';
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107;
}

/* Blog List Page */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.blog-section {
    padding: 6rem 0;
}

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

.blog-section .blog-card {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .blog-section .blog-card {
        grid-template-columns: 300px 1fr;
    }
}

.blog-section .blog-image {
    height: 25rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* Blog Post Page */
.blog-post {
    padding: 6rem 0;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    margin-bottom: 4rem;
}

.post-intro {
    font-size: 1.8rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.post-quote {
    padding: 3rem;
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    margin: 3rem 0;
}

.post-quote blockquote {
    margin: 0;
}

.post-quote p {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.post-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tag {
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.post-share {
    margin-bottom: 4rem;
}

.post-share h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1.5rem;
}

.share-buttons a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.post-navigation-previous,
.post-navigation-next {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-navigation-previous:hover,
.post-navigation-next:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.post-navigation-previous {
    text-align: left;
}

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

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

.post-navigation h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.post-navigation-empty {
    width: 100%;
}

.related-posts {
    margin-bottom: 4rem;
}

.related-posts h3 {
    margin-bottom: 2rem;
}

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

.related-post {
    display: block;
    transition: transform var(--transition-normal);
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-post img {
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    height: 15rem;
    object-fit: cover;
    width: 100%;
}

.related-post h4 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* Services Page */
.services-section {
    padding: 6rem 0;
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.service-card h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.about-section {
    padding: 6rem 0;
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

.team-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.team-member {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1.5rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.team-member .social-links {
    margin-bottom: 0;
}

.team-member .social-links a {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

.values-section {
    padding: 6rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.value-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 7rem;
    height: 7rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

.value-card p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info > p {
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0;
}

.social-contact {
    margin-top: 4rem;
}

.social-contact h3 {
    margin-bottom: 2rem;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

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

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.map-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    height: 40rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius-md);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.thank-you-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    html {
        font-size: 60%;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 1.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .feature-grid,
    .testimonial-slider,
    .blog-cards,
    .services-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
