:root {
    --primary-color: #1a3b6e;
    --secondary-color: #5b7ba6;
    --tertiary-color: #d0dce8;
    --accent-color: #f0c14b;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-speed: 0.3s;
}

* {
    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-dark);
    background-color: var(--background-light);
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

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

.btn.primary:hover {
    background-color: #15305d;
}

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

.btn.secondary:hover {
    background-color: #4c6a91;
}

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

.btn.outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

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

.logo img {
    max-height: 60px;
}

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

nav li {
    margin-left: 30px;
}

nav a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

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

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

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

.font-size-control {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

#decrease-font {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color var(--transition-speed);
}

#decrease-font svg {
    margin-right: 5px;
}

#decrease-font:hover {
    color: var(--primary-color);
}

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

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

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-medium);
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

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

.feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.feature-card .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

.feature-card ul {
    margin-bottom: 0;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

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

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-medium);
}

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

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

.quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--background-white);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.blog-card {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

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

.blog-card h3 {
    padding: 20px 20px 10px;
}

.blog-card p {
    padding: 0 20px;
    color: var(--text-medium);
    flex-grow: 1;
}

.blog-card .btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

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

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
    background-color: var(--background-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

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

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--background-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.mission, .vision {
    padding: 40px;
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mission .icon, .vision .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--background-white);
}

.team h2, .section-subtitle {
    text-align: center;
}

.section-subtitle {
    margin-bottom: 60px;
    color: var(--text-medium);
}

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

.team-member {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.team-member p {
    padding: 0 20px 20px;
    margin-bottom: 0;
    color: var(--text-medium);
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

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

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

.value-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Main */
.services-intro {
    padding: 80px 0 40px;
    background-color: var(--background-white);
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 30px;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-medium);
}

.services-main {
    padding: 40px 0 80px;
    background-color: var(--background-white);
}

.service-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

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

.service-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

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

/* Methodology */
.methodology {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

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

.step {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    margin-top: 10px;
}

/* Consultation Form */
.consultation-form {
    padding: 80px 0;
    background-color: var(--background-white);
}

.consultation-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.consultation-form > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

button[type="submit"] {
    width: 100%;
    margin-top: 20px;
}

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

.modal-content {
    background-color: var(--background-white);
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.modal-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-icon svg {
    width: 60px;
    height: 60px;
}

.modal h3 {
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 25px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 8px 20px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

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

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

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    transition: transform var(--transition-speed);
}

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

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

.faq-question.active + .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.contact-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

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

.contact-card p:last-child {
    margin-bottom: 0;
}

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

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

.form-header h2 {
    margin-bottom: 15px;
}

.form-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-medium);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--secondary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-weight: normal;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

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

/* Blog Main */
.blog-main {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.blog-main .blog-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-main .blog-image {
    height: 100%;
}

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

.blog-main .blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.blog-category {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.blog-main .blog-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-main .blog-content .btn {
    align-self: flex-start;
}

/* Blog Post */
.blog-post-container {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

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

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

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

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

.blog-text h2 {
    margin-top: 40px;
}

.blog-text h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

.blog-text p, .blog-text ul, .blog-text ol {
    color: var(--text-medium);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p:first-of-type {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-info p:last-child {
    margin-bottom: 0;
}

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

.blog-share h4 {
    margin-bottom: 15px;
}

.social-share {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all var(--transition-speed);
}

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

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

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

.related-card {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.related-card h4 {
    padding: 20px 20px 15px;
}

.related-card .btn {
    margin: 0 20px 20px;
}

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

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

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

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

footer h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

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

.footer-links a, .footer-legal a {
    color: var(--tertiary-color);
    transition: color var(--transition-speed);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

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

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

.social-icons a:hover {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
}

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

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--tertiary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 20px;
    text-align: center;
}

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

.cookie-more-info {
    font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .about-grid, .service-item {
        grid-template-columns: 1fr;
    }

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

    .blog-main .blog-image {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav li {
        margin: 0 10px;
    }

    .font-size-control {
        margin: 10px 0 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .features, .services-preview, .blog-preview, .about-intro, .team, .values, .services-intro, .services-main, .methodology, .consultation-form, .faq-section, .contact-info, .contact-form-section, .map-section, .blog-main, .blog-post-container {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

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

    form {
        padding: 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        flex-direction: column;
    }

    .blog-author {
        padding: 20px;
    }
}
