/* Base */
:root {
    --primary-color: #3a7bd5;
    --primary-dark: #2c5fb1;
    --secondary-color: #00d9a6;
    --secondary-dark: #00b489;
    --tertiary-color: #f5a623;
    --dark-color: #2c3e50;
    --gray-dark: #4a4a4a;
    --gray-medium: #7a7a7a;
    --gray-light: #e0e0e0;
    --light-color: #f7f9fc;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --text-color: #333333;
    --border-radius: 6px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

.btn {
    display: inline-block;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

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

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

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

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

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    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);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(58, 123, 213, 0.8), rgba(0, 217, 166, 0.8)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

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

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

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

.icon svg {
    width: 40px;
    height: 40px;
}

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

/* Latest Posts */
.latest-posts {
    padding: 80px 0;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

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

.post-content {
    padding: 20px;
}

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

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
}

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

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -15px;
}

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

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.client h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client p {
    margin-bottom: 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

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

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background-color: var(--gray-light);
    border-radius: 6px;
}

.testimonial {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    text-align: center;
    background-color: white;
}

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

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.form-group input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
    outline: none;
}

.form-group button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

.cookie-banner.visible {
    display: block;
}

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

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

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

.cookie-content a {
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, rgba(58, 123, 213, 0.9), rgba(0, 217, 166, 0.9)), url('images/header-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 0 60px;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

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

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

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-top: 0;
}

.about-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

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

.about-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.team-section .section-subtitle {
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto 50px;
}

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

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

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

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

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

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

.team-member p:first-of-type {
    font-weight: 500;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--gray-dark);
    transition: var(--transition);
}

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

.social-links svg {
    width: 18px;
    height: 18px;
}

.certifications {
    padding: 80px 0;
}

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

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

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
}

.cert-icon svg {
    width: 30px;
    height: 30px;
}

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

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

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

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, rgba(58, 123, 213, 0.9), rgba(0, 217, 166, 0.9)), url('images/cta-bg.jpg') center/cover no-repeat;
    color: white;
}

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

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

/* Services Page */
.services-intro {
    padding: 60px 0;
    text-align: center;
}

.service-categories {
    padding: 40px 0 80px;
}

.service-category {
    display: grid;
    grid-template-columns: auto 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
}

.service-category.reverse {
    grid-template-columns: 1fr 2fr auto;
}

.service-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

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

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

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

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.service-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.pricing {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

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

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

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-dark);
}

.pricing-header h3 {
    color: white;
    margin-bottom: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    margin-bottom: 30px;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 0;
}

.pricing-features ul li svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--success-color);
}

.pricing-features ul li.feature-disabled {
    color: var(--gray-medium);
}

.pricing-features ul li.feature-disabled svg {
    color: var(--danger-color);
}

.pricing-card .btn {
    display: block;
    margin: 0 auto;
    width: 80%;
}

.faq {
    padding: 80px 0;
}

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

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

.accordion-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    width: 100%;
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--light-color);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

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

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

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-box,
.category-box,
.popular-posts,
.tags-box {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.search-box h3,
.category-box h3,
.popular-posts h3,
.tags-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.search-form {
    display: flex;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--primary-dark);
}

.search-form button svg {
    width: 20px;
    height: 20px;
}

.category-box ul li {
    margin-bottom: 15px;
}

.category-box ul li:last-child {
    margin-bottom: 0;
}

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

.category-box ul li a:hover {
    color: var(--primary-color);
}

.category-box ul li a span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.popular-posts ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

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

.popular-posts ul li a {
    display: flex;
    gap: 15px;
    color: var(--text-color);
}

.popular-posts ul li a:hover h4 {
    color: var(--primary-color);
}

.popular-posts ul li img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.popular-posts ul li h4 {
    font-size: 1rem;
    margin: 0 0 5px;
    transition: var(--transition);
}

.post-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

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

.tags a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--gray-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.post-image {
    height: 100%;
}

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

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.post-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.post-excerpt {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.pagination .next-page {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

.pagination .next-page svg {
    width: 20px;
    height: 20px;
}

.blog-newsletter {
    background-color: var(--light-color);
}

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

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info p,
.contact-form p {
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    background-color: white;
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-right: 20px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 0;
}

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

.social-contact h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-actions {
    margin-top: 10px;
}

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

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

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

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

.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray-medium);
    transition: var(--transition);
}

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

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

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

/* Blog Post */
.post-content {
    padding: 120px 0 80px;
}

.post-header {
    margin-bottom: 30px;
    text-align: center;
}

.post-header .post-meta {
    justify-content: center;
}

.post-header h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

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

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.post-quote {
    margin: 40px 0;
    padding: 20px 40px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--light-color);
    font-style: italic;
}

.post-quote p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

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

.benefit-item,
.technique-item {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.case-study {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.case-study h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.post-conclusion {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.post-conclusion h2 {
    margin-top: 0;
}

.author-bio {
    display: flex;
    align-items: center;
    margin: 60px 0;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.author-bio h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.author-bio p {
    margin-bottom: 0;
}

.post-share {
    margin-bottom: 60px;
}

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

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

.social-share a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: white;
    transition: var(--transition);
}

.social-share a svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.social-share a span {
    font-weight: 500;
}

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

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

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

.share-email {
    background-color: #dd4b39;
}

.social-share a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

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

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

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

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

.related-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

.related-post h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    margin: 0;
}

.related-post .post-date {
    padding: 0 15px 15px;
    display: block;
}

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

.post-comments h2 {
    margin-bottom: 30px;
}

.comments-list {
    margin-bottom: 40px;
}

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

.comment.reply {
    margin-top: 25px;
    margin-left: 50px;
}

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

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

.comment-content {
    flex-grow: 1;
}

.comment-meta {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.comment-author {
    font-weight: 600;
    margin-right: 15px;
}

.comment-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.comment p {
    margin-bottom: 10px;
}

.reply-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.7rem;
    }

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

@media (max-width: 992px) {
    .about-intro .container,
    .contact-section .container {
        grid-template-columns: 1fr;
    }

    .service-category,
    .service-category.reverse {
        grid-template-columns: 1fr;
    }

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

    .service-image {
        order: -1;
        margin-bottom: 30px;
    }

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

    .blog-sidebar {
        order: 1;
    }

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

    .post-image img {
        height: 300px;
    }
}

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

    .logo {
        margin-bottom: 15px;
    }

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

    .hero {
        padding: 150px 0 80px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

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

    .author-bio img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .social-share {
        flex-wrap: wrap;
    }

    .comment.reply {
        margin-left: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .form-group {
        flex-direction: column;
    }

    .form-group input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .form-group button {
        border-radius: var(--border-radius);
    }

    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .comment.reply {
        margin-left: 0;
    }
}
