/* Base Styles */
:root {
    --primary-color: #D15785;
    --primary-dark: #B83D6C;
    --primary-light: #EFB2C8;
    --secondary-color: #5D5C61;
    --light-gray: #f5f5f5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333;
    --white: #fff;
    --black: #000;
    --text-color: #333;
    --border-color: #ddd;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-size-base: 16px;
    --font-size-decreased: 14px;
    --border-radius: 4px;
    --container-width: 1200px;
}

@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 {
    font-size: var(--font-size-base);
}

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

body.font-decreased {
    font-size: var(--font-size-decreased);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-gray);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.font-size-btn {
    margin-left: 20px;
    padding: 8px 15px;
    background-color: var(--primary-light);
    color: var(--dark-gray);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 600px;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Page Banner */
.page-banner {
    height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Buttons */
.btn, .btn-large, .btn-small, .btn-outline {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover, .btn-large:hover, .btn-small:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

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

/* Intro Story Section */
.intro-story {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-story h2 {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.intro-story h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Featured Services Section */
.featured-services {
    padding: 80px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.featured-services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

/* Recent Posts Section */
.recent-posts {
    padding: 80px 5%;
    text-align: center;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

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

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

.post-card h3 {
    margin: 20px 0 10px;
    padding: 0 20px;
    font-size: 1.2rem;
}

.post-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

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

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-right: 20px;
}

.testimonial:last-child {
    margin-right: 0;
}

.quote {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.quote:before, .quote:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
}

.quote:before {
    position: absolute;
    left: 0;
    top: -10px;
}

.quote:after {
    position: absolute;
    right: 0;
    bottom: -20px;
}

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

/* About Section */
.about-intro {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about-intro h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Our Values Section */
.our-values {
    padding: 80px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.our-values h2 {
    margin-bottom: 40px;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

/* Team Section */
.team-section {
    padding: 80px 5%;
    text-align: center;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.team-member h3 {
    margin: 20px 0 5px;
    color: var(--primary-color);
}

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

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

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

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

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

/* Certifications Section */
.certifications {
    padding: 80px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

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

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

.credential {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

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

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/9.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

/* Services Intro Section */
.services-intro {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.services-intro h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Service Category Section */
.service-category {
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category.alt {
    background-color: var(--light-gray);
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-details {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
}

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

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--light-gray);
}

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

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

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    padding: 40px 20px;
    position: relative;
}

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

.feature-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.pricing-card h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.price-item:last-of-type {
    margin-bottom: 30px;
}

.service {
    text-align: left;
    font-weight: 500;
}

.price {
    font-weight: 600;
}

.pricing-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.info-content p {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

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

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

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

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Map Section */
.map-section {
    padding: 50px 5%;
    text-align: center;
}

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

.map-container {
    height: 450px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

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

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

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

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-content svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.btn-close-modal {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Blog Posts */
.blog-posts {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card-large {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    transition: var(--transition);
}

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

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

.post-content {
    padding: 30px;
}

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

.post-date, .post-author, .post-category {
    display: flex;
    align-items: center;
}

.post-date:before, .post-author:before, .post-category:before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

/* Blog Post Container */
.blog-post-container {
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post {
    flex: 3;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

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

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

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--secondary-color);
    padding: 10px;
    background-color: var(--light-gray);
    margin-bottom: 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0;
}

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

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

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

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

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.facebook {
    background-color: #3b5998;
    color: var(--white);
}

.twitter {
    background-color: #1da1f2;
    color: var(--white);
}

.pinterest {
    background-color: #bd081c;
    color: var(--white);
}

.email {
    background-color: #555;
    color: var(--white);
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.post-author-bio {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.author-details h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.author-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

.related-post {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.related-post h4 {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 0;
    transition: var(--transition);
}

.related-post:hover h4 {
    color: var(--primary-color);
}

/* Blog Sidebar */
.blog-sidebar {
    flex: 1;
    min-width: 250px;
}

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

.sidebar-widget h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.sidebar-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

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

.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
}

.categories-widget a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}

.categories-widget a:before {
    content: '→';
    margin-right: 10px;
    color: var(--primary-color);
}

.categories-widget a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.recent-post {
    margin-bottom: 15px;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post a {
    display: flex;
    color: var(--text-color);
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.recent-post h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.recent-post span {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.services-widget ul {
    margin-bottom: 20px;
}

.services-widget li {
    margin-bottom: 10px;
}

.services-widget a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.services-widget a:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.customize {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.customize:hover {
    background-color: var(--medium-gray);
}

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

.reject:hover {
    background-color: var(--dark-gray);
}

.cookie-more {
    font-size: 0.9rem;
    text-decoration: underline;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0;
}

.footer-links {
    min-width: 150px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--medium-gray);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .service-category {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .service-category {
        flex-direction: column;
    }
    
    .service-category.alt {
        flex-direction: column-reverse;
    }
    
    .service-image, .service-details {
        width: 100%;
    }
    
    .service-details {
        padding: 30px 0 0;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .post-card-large {
        flex-direction: column;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-links h4:after, .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn, .btn-large, .btn-small {
        padding: 10px 20px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}
