/* Base Styles and Variables */
:root {
    --primary-color: #bb7a9d;
    --primary-dark: #9a5a7d;
    --primary-light: #f7c9e0;
    --secondary-color: #5a4a5f;
    --accent-color: #d8a7b8;
    --light-color: #f8f5f7;
    --dark-color: #2d232a;
    --gray-color: #6c6c6c;
    --light-gray: #e8e8e8;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

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

ul {
    list-style: none;
}

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

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn.center {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 20px;
}

section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

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

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

.logo {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: space-around;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 10px 15px;
    transition: var(--transition);
}

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

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

.nav-links a.active:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero h2:after {
    display: none;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: var(--light-color);
}

.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Trending Section */
.trending {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.chart-container {
    max-width: 800px;
    height: 400px;
    margin: 0 auto 30px;
}

.trend-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    padding: 40px 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 20px;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.stars i {
    margin: 0 2px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.dots-container {
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

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

.posts-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 20px 20px;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5% 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

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

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

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

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

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

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 35, 42, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none; /* Initially hidden, will be shown with JavaScript */
}

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.cookie-btn.customize {
    background-color: white;
    color: var(--dark-color);
}

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

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

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

/* Services Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h2 {
    color: white;
    margin-bottom: 10px;
}

.page-header h2:after {
    display: none;
}

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

.services-list {
    padding: 80px 0;
}

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

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

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

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

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

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

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

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

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

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

.package-header h3 {
    color: white;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.package-content {
    padding: 30px 20px;
}

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

.package-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.package-content .btn {
    display: block;
    width: 100%;
}

.cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

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

.cta h2:after {
    display: none;
}

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

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

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

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

.blog-text {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

.blog-category, .blog-date {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-date {
    color: var(--gray-color);
}

.blog-text h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

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

.blog-text .read-more {
    padding: 0;
    font-weight: 600;
}

.blog-text .read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.blog-text .read-more:hover i {
    margin-left: 10px;
}

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

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

.newsletter-form {
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter .small {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Blog Post Styles */
.blog-post {
    padding: 80px 0;
}

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

.post-meta {
    margin-bottom: 20px;
}

.post-category, .post-date, .post-author {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
}

.post-category {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.post-date, .post-author {
    color: var(--gray-color);
}

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

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

.post-content {
    margin-bottom: 50px;
}

.post-content h3 {
    margin-top: 40px;
    color: var(--primary-dark);
}

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

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

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

.bullet-list, .number-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.bullet-list li, .number-list li {
    margin-bottom: 10px;
}

.bullet-list li {
    list-style-type: disc;
}

.number-list li {
    list-style-type: decimal;
}

.post-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 50px;
}

.post-tags span, .post-share span {
    margin-right: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 15px;
    background-color: var(--light-color);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.social-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin-left: 5px;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.related-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.related-post {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.related-post h4 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: var(--transition);
}

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

/* About Us Page Styles */
.about-story {
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

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

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

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

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.approach-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.approach-card h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.team {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

.credentials-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.credentials-list {
    flex: 1;
    min-width: 300px;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

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

.credential-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.credential-text h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.credentials-image {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
}

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

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

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

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

.info-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

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

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

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

.social-contact h4 {
    margin-bottom: 15px;
}

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

.contact-form-container h3 {
    margin-bottom: 30px;
}

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

.form-group {
    width: calc(50% - 10px);
}

.form-group.full-width {
    width: 100%;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(187, 122, 157, 0.2);
}

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

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

.checkbox-group label {
    flex: 1;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.map-section {
    padding-bottom: 80px;
}

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

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

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

.faq-section h3 {
    margin-bottom: 40px;
    text-align: center;
}

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

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

.faq-question h4 {
    margin-bottom: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

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

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    margin: auto;
    padding: 40px;
    position: relative;
    animation: modalOpen 0.4s;
}

@keyframes modalOpen {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}

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

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

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

.thank-you-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.thank-you-message h3 {
    margin-bottom: 20px;
}

.thank-you-message p {
    margin-bottom: 30px;
}

.close-btn {
    display: inline-block;
    padding: 10px 30px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image, .service-content {
        width: 100%;
        padding: 0;
    }
    
    .service-image {
        margin-bottom: 30px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-tags {
        margin-bottom: 20px;
    }
    
    .about-content, .credentials-content {
        flex-direction: column;
    }
    
    .about-text, .credentials-list {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .credentials-image {
        padding-left: 0;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        width: 70%;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .posts-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .post-card {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: var(--border-radius);
    }
    
    .related-post {
        min-width: 100%;
    }
    
    .blog-text, .blog-image {
        min-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
