/* Base Styles */
:root {
    --primary-color: #2c4b81;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --light-text: #777;
    --border-color: #ddd;
    --success-color: #27ae60;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

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

.btn.primary:hover {
    background-color: #1a365d;
}

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

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

.btn.small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Header and Navigation */
header {
    background-color: 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 img {
    height: 60px;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav ul li a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

nav ul li a.active {
    color: var(--secondary-color);
}

nav ul li a.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
}

nav ul li a.contact-btn:hover {
    background-color: #1a365d;
}

nav ul li a.contact-btn:before {
    display: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

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

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

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

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

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

.about-content {
    flex: 1;
}

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

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

.about-list {
    margin-bottom: 25px;
}

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

.about-list li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

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

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

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-content .date {
    font-size: 0.9rem;
    color: var(--light-text);
    display: block;
    margin-bottom: 10px;
}

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

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

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

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

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.testimonial-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    min-width: 400px;
    flex: 1;
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--light-text);
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p:before {
    top: -10px;
    left: 0;
}

.testimonial-content p:after {
    bottom: -30px;
    right: 0;
}

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

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

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

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

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

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

.footer-logo p {
    color: #ccc;
    margin-bottom: 20px;
}

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

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

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

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-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;
    gap: 15px;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #ccc;
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    color: white;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.cookie-content a:hover {
    color: white;
}

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

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

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.service-content {
    flex: 1;
}

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

.service-content h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

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

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

.service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

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

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.methodology-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    height: calc(100% + 30px);
    width: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step:last-child:before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.step-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

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

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

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

.blog-card.large {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .blog-card.large {
        flex-direction: row;
    }
    
    .blog-card.large .blog-image {
        width: 50%;
        height: auto;
    }
    
    .blog-card.large .blog-content {
        width: 50%;
    }
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.category-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.category-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
}

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

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

.newsletter-content p {
    margin-bottom: 30px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

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

/* About Page */
.about-section {
    padding: 80px 0;
}

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

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

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

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

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

.vision, .mission {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.vision .icon, .mission .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision .icon {
    background-color: var(--primary-color);
}

.mission .icon {
    background-color: var(--secondary-color);
}

.vision h2, .mission h2 {
    margin-bottom: 15px;
}

.vision p, .mission p {
    color: var(--light-text);
}

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

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

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

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-info .position {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stats {
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.contact-info h2 {
    color: white;
    margin-bottom: 30px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-icon i {
    font-size: 1.3rem;
}

.info-content h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    opacity: 0.8;
    margin-bottom: 5px;
}

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

.social-contact h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

.contact-form p {
    color: var(--light-text);
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group textarea {
    resize: vertical;
}

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

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

.form-group.checkbox label {
    font-weight: normal;
    color: var(--light-text);
    font-size: 0.9rem;
}

.form-group.checkbox label a {
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

/* Contact Offices */
.contact-offices {
    padding: 80px 0;
}

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

.office-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.office-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.office-card p {
    color: var(--light-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-card p i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.thank-you-message {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
    color: var(--success-color);
}

.thank-you-message p {
    margin-bottom: 25px;
    color: var(--light-text);
}

/* Blog Post Page */
.blog-post-header {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.blog-post-meta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.blog-categories span {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0 5px;
    display: inline-block;
}

.blog-post-meta h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
}

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

.post-info span {
    margin: 0 10px;
    display: inline-block;
}

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

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

.blog-post-content {
    padding: 80px 0;
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-post-main {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.blog-post-text h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.blog-post-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-post-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

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

.blog-post-text ul li, .blog-post-text ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-post-text ul {
    list-style-type: disc;
}

.blog-post-text ol {
    list-style-type: decimal;
}

.blog-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.image-caption {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

.blog-quote {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.blog-quote p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-quote cite {
    color: var(--light-text);
    font-size: 0.9rem;
    display: block;
    text-align: right;
}

.blog-author {
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

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

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

.author-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

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

.blog-share {
    margin-top: 40px;
}

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

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

.share-buttons a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
}

.share-buttons a i {
    margin-right: 8px;
}

.share-buttons a.facebook {
    background-color: #3b5998;
}

.share-buttons a.twitter {
    background-color: #1da1f2;
}

.share-buttons a.linkedin {
    background-color: #0077b5;
}

.share-buttons a.whatsapp {
    background-color: #25d366;
}

.share-buttons a:hover {
    opacity: 0.9;
}

.related-posts {
    margin-top: 50px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

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

.related-post {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-post:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-content .date {
    color: var(--light-text);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-sidebar {
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

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

.categories-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.categories-widget ul li a:hover {
    color: var(--secondary-color);
}

.categories-widget ul li a span {
    color: var(--light-text);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

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

.popular-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.cta-widget {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-widget h3 {
    color: white;
}

.cta-widget h3:after {
    left: 50%;
    transform: translateX(-50%);
}

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

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

.tags a {
    background-color: #f9f9f9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-preview .container,
    .service-item,
    .service-item.reverse,
    .blog-post-content .container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero-content,
    .about-content,
    .service-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@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-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .testimonial-item {
        min-width: 300px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
