:root {
    --soft-cream: #FAF6F1;
    --dusty-pink: #E8B4BC;
    --deep-plum: #5D4157;
    --accent-pink: #D89CA8;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --border-light: #E5DFD8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--soft-cream);
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(93, 65, 87, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-primary {
    padding: 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
}

.brand-logo img {
    height: 60px;
    width: auto;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--deep-plum);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: var(--deep-plum);
}

.nav-menu a.active-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--dusty-pink);
}

.lang-btn {
    background-color: var(--dusty-pink);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--deep-plum);
}

.hero-banner {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #F5EDE4 100%);
    padding: 5rem 2.5rem;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #4A3244;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 65, 87, 0.25);
}

.btn-secondary {
    background-color: var(--dusty-pink);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(93, 65, 87, 0.15);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.services-showcase {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-heading {
    text-align: center;
    font-size: 2.8rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--dusty-pink);
    box-shadow: 0 12px 30px rgba(232, 180, 188, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--dusty-pink);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--deep-plum);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-timeline {
    padding: 5rem 0;
    background-color: var(--soft-cream);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 70px;
    width: 2px;
    height: calc(100% + 30px);
    background-color: var(--dusty-pink);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    background-color: var(--deep-plum);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--deep-plum);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-us {
    padding: 5rem 0;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h2 {
    color: var(--deep-plum);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-text > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--dusty-pink);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(93, 65, 87, 0.12);
}

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #F5EDE4 100%);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(93, 65, 87, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--dusty-pink);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    border-top: 2px solid var(--border-light);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--deep-plum);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.latest-blog-posts {
    padding: 5rem 0;
    background-color: var(--white);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-preview-card {
    background-color: var(--soft-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(93, 65, 87, 0.15);
}

.blog-preview-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-preview-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background-color: var(--dusty-pink);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-preview-card h3 {
    color: var(--deep-plum);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-preview-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-link {
    color: var(--deep-plum);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--dusty-pink);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-plum) 0%, #4A3244 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--soft-cream);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary-inverse {
    background-color: var(--dusty-pink);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-inverse:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

.main-footer {
    background-color: var(--deep-plum);
    color: var(--soft-cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--soft-cream);
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column h4 {
    color: var(--dusty-pink);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--soft-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.footer-links a:hover {
    color: var(--dusty-pink);
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--dusty-pink);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-contact a {
    color: var(--soft-cream);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--dusty-pink);
}

.company-registration {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 246, 241, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(93, 65, 87, 0.2);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--deep-plum);
    margin-bottom: 0.8rem;
}

.cookie-content p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--deep-plum);
    text-decoration: underline;
}

.cookie-purposes {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accept-all {
    background-color: var(--deep-plum);
    color: var(--white);
}

.accept-all:hover {
    background-color: #4A3244;
}

.customize {
    background-color: var(--dusty-pink);
    color: var(--white);
}

.customize:hover {
    background-color: var(--accent-pink);
}

.decline {
    background-color: var(--border-light);
    color: var(--text-dark);
}

.decline:hover {
    background-color: #D5CFC8;
}

.page-hero-about,
.page-hero-blog,
.page-hero-contact {
    background: linear-gradient(135deg, var(--deep-plum) 0%, #4A3244 100%);
    padding: 4rem 2.5rem;
    text-align: center;
}

.page-hero-about h1,
.page-hero-blog h1,
.page-hero-contact h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle-about,
.hero-subtitle-blog,
.hero-subtitle-contact {
    color: var(--soft-cream);
    font-size: 1.2rem;
}

.our-story-section {
    padding: 5rem 0;
    background-color: var(--soft-cream);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(93, 65, 87, 0.12);
}

.story-text-wrapper h2 {
    color: var(--deep-plum);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-text-wrapper p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--dusty-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #F5EDE4 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 65, 87, 0.1);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
}

.team-photo-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: var(--deep-plum);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--dusty-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.achievements-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--dusty-pink);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.blog-posts-section {
    padding: 5rem 0;
    background-color: var(--soft-cream);
}

.blog-main-grid {
    display: grid;
    gap: 3rem;
}

.blog-post-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(93, 65, 87, 0.1);
}

.featured-post {
    grid-column: 1 / -1;
}

.featured-post .blog-post-image {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--dusty-pink);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
}

.blog-post-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-post .blog-post-image img {
    height: 450px;
}

.blog-post-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.blog-category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.blog-category-tag.trends {
    background-color: var(--dusty-pink);
}

.blog-category-tag.strategy {
    background-color: var(--deep-plum);
}

.blog-category-tag.analytics {
    background-color: #8B6F8C;
}

.blog-category-tag.platform {
    background-color: var(--accent-pink);
}

.blog-category-tag.best-practice {
    background-color: #9B7C8E;
}

.blog-date,
.blog-reading-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-post-card h2,
.blog-post-card h3 {
    color: var(--deep-plum);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-card h2 {
    font-size: 1.8rem;
}

.blog-post-card h3 {
    font-size: 1.4rem;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-author-info {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.author-name {
    color: var(--text-dark);
    font-weight: 600;
}

.btn-read-article {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-read-article:hover {
    background-color: #4A3244;
    transform: translateY(-2px);
}

.blog-newsletter-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--accent-pink) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-box h2 {
    margin-bottom: 1rem;
}

.newsletter-box p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.btn-subscribe {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #4A3244;
}

.contact-content-section {
    padding: 5rem 0;
    background-color: var(--soft-cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    color: var(--deep-plum);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(93, 65, 87, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dusty-pink);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-label span {
    color: var(--text-dark);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--deep-plum);
}

.btn-submit-form {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-submit-form:hover {
    background-color: #4A3244;
    transform: translateY(-2px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box,
.company-info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(93, 65, 87, 0.1);
}

.contact-info-box h3,
.company-info-box h4 {
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dusty-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-text h4 {
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--deep-plum);
}

.company-info-box p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 65, 87, 0.1);
}

.faq-contact-section {
    padding: 5rem 0;
    background-color: var(--soft-cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(93, 65, 87, 0.08);
}

.faq-item h3 {
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item h3 i {
    color: var(--dusty-pink);
    margin-right: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    font-size: 4rem;
    color: var(--dusty-pink);
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    color: var(--deep-plum);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-close-modal {
    background-color: var(--deep-plum);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-close-modal:hover {
    background-color: #4A3244;
}

.blog-post-single {
    background-color: var(--soft-cream);
}

.post-header-section {
    background-color: var(--white);
    padding: 3rem 0 2rem;
}

.content-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.post-breadcrumb {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.post-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.post-breadcrumb a:hover {
    color: var(--deep-plum);
}

.post-breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
}

.post-header-section h1 {
    color: var(--deep-plum);
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    color: var(--text-light);
}

.post-category-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-section {
    padding: 3rem 0 5rem;
}

.post-content {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.1rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.post-content h2 {
    color: var(--deep-plum);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.post-content h3 {
    color: var(--deep-plum);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-cta-box {
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--accent-pink) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    color: var(--white);
}

.post-cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.post-cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.post-cta-box .btn-primary {
    background-color: var(--deep-plum);
}

.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.post-tags i {
    color: var(--dusty-pink);
    font-size: 1.2rem;
}

.tag-item {
    background-color: var(--white);
    color: var(--deep-plum);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 2px solid var(--border-light);
}

.post-navigation {
    margin-top: 3rem;
    text-align: center;
}

.btn-back-to-blog {
    background-color: var(--dusty-pink);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-back-to-blog:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-content-wrapper,
    .feature-grid,
    .story-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text-block h1 {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item::before {
        left: 40px;
        top: 90px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-banner {
        padding: 3rem 1.5rem;
    }
    
    .hero-text-block h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .content-container,
    .content-container-narrow {
        padding: 0 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .post-header-section h1 {
        font-size: 2rem;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-hero-about h1,
    .page-hero-blog h1,
    .page-hero-contact h1 {
        font-size: 2rem;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
