/* Global Styles */
:root {
    --primary-color: #e7a9c5;
    --primary-dark: #c98aa8;
    --secondary-color: #8f5d7d;
    --accent-color: #f6cdde;
    --text-color: #333333;
    --light-text: #777777;
    --background-color: #ffffff;
    --light-background: #f9f0f5;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --large-border-radius: 15px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style-type: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 25px;
}

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

section {
    padding: 5rem 0;
}

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

/* Header and Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    transition: var(--transition);
}

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

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 5rem;
    background-color: var(--light-background);
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    border-radius: var(--large-border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 5%;
    text-align: center;
}

.services-overview h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-text);
}

.service-card .btn-secondary {
    margin: 0 0 1.5rem;
}

/* Daily Inspiration Section */
.daily-inspiration {
    background-color: var(--light-background);
    padding: 5rem 5%;
}

.daily-inspiration h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.inspiration-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.inspiration-image {
    flex: 1;
}

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

.inspiration-text {
    flex: 1;
}

.inspiration-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.inspiration-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

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

.testimonial {
    flex: 0 0 calc(33.333% - 2rem);
    scroll-snap-align: start;
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

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

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

.quote:after {
    bottom: -20px;
    right: -10px;
}

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

/* Featured Post Section */
.featured-post {
    background-color: var(--light-background);
    padding: 5rem 5%;
}

.featured-post h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.featured-post-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.featured-post-image {
    flex: 1;
}

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

.featured-post-text {
    flex: 1;
}

.featured-post-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.featured-post-text p {
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background-color: var(--light-background);
    padding: 8rem 5% 4rem;
    text-align: center;
}

.header-content h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Page */
.services-container {
    padding: 0 5%;
}

.service {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-details h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.service-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.service-details ul li {
    margin-bottom: 0.5rem;
}

.service-details .price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.process {
    background-color: var(--light-background);
    padding: 5rem 5%;
    text-align: center;
}

.process h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.products {
    padding: 5rem 5%;
    text-align: center;
}

.products h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.products > p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.brand img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.brand p {
    font-weight: 500;
}

.cta {
    background-color: var(--light-background);
    padding: 5rem 5%;
    text-align: center;
}

.cta h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Page */
.blog-posts {
    padding: 0 5%;
}

.post {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

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

.post-content {
    flex: 1.5;
    padding: 2rem;
}

.post-content h2 {
    margin-bottom: 0.5rem;
}

.post-content h2 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
}

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

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

.blog-newsletter {
    background-color: var(--light-background);
    padding: 5rem 5%;
    text-align: center;
}

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

.newsletter-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

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

/* Blog Post Single */
.blog-post-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.post-featured-image {
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-content h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0.5rem;
}

.post-content .post-image {
    margin: 2rem 0;
}

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

.post-tags {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-author {
    display: flex;
    align-items: center;
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    gap: 2rem;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-bio h3 {
    margin-bottom: 0.5rem;
}

.author-bio h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post img {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.related-post h4 {
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* About Page */
.about-story {
    padding: 0 5%;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mission-vision {
    background-color: var(--light-background);
    padding: 5rem 5%;
    display: flex;
    gap: 3rem;
}

.mission, .vision {
    flex: 1;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
}

.mission h2, .vision h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-section {
    padding: 5rem 5%;
    text-align: center;
}

.team-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

.team-member:hover {
    transform: translateY(-10px);
}

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

.team-member h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary-color);
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
}

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

.credentials {
    background-color: var(--light-background);
    padding: 5rem 5%;
}

.credentials h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.credentials-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.credentials-text {
    flex: 1;
}

.credentials-image {
    flex: 1;
}

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

.values {
    padding: 5rem 5%;
    text-align: center;
}

.values h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-content {
    padding: 0 5%;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 24px;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.business-hours {
    margin-bottom: 2rem;
}

.business-hours h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.business-hours table {
    width: 100%;
}

.business-hours td {
    padding: 8px 0;
}

.business-hours td:first-child {
    font-weight: 600;
}

.social-links h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-color);
    transition: var(--transition);
}

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

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

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

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

.map-section {
    padding: 5rem 5%;
    text-align: center;
}

.map-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.map-container img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-section {
    background-color: var(--light-background);
    padding: 5rem 5%;
    text-align: center;
}

.faq-section h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    text-align: left;
}

.faq-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.modal-content {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

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

.modal h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.modal p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    margin-bottom: 1rem;
    background-color: white;
    padding: 5px;
    border-radius: var(--border-radius);
}

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

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact svg {
    margin-right: 8px;
}

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

.footer-bottom .social-icons {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-bottom .social-icons a {
    color: white;
    opacity: 0.8;
}

.footer-bottom .social-icons a:hover {
    opacity: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie.decline {
    background-color: var(--error-color);
    color: white;
}

.cookie-policy-link {
    font-size: 0.9rem;
    text-decoration: underline;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .testimonial {
        flex: 0 0 calc(50% - 2rem);
    }

    .post, .service {
        flex-direction: column;
    }

    .service:nth-child(even) {
        flex-direction: column;
    }

    .post-image, .service-image {
        width: 100%;
    }

    .mission-vision, .contact-content, .story-content, .credentials-content, .inspiration-content, .featured-post-content {
        flex-direction: column;
    }

    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 6rem 1rem 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .testimonial {
        flex: 0 0 100%;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .process-steps, .faq-container {
        grid-template-columns: 1fr;
    }

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

    .post-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        width: 85%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .modal-content {
        padding: 1.5rem;
    }
}
