/* Base Styles */
:root {
    --primary-color: #d4968f;
    --secondary-color: #f5ebe5;
    --accent-color: #a67f78;
    --dark-color: #2c2c2c;
    --light-color: #f9f6f4;
    --text-color: #333;
    --light-text: #767676;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

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

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 60px 0;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

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

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

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

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: white;
}

.banner-content p {
    font-size: 20px;
}

/* Intro Section */
.intro {
    background-color: white;
    text-align: center;
}

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

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

.intro p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.style-stats {
    margin-top: 40px;
}

.chart-container {
    max-width: 600px;
    margin: 0 auto;
}

.chart-caption {
    font-style: italic;
    color: var(--light-text);
    margin-top: 10px;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--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: 220px;
    object-fit: cover;
}

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

.service-card p {
    margin: 0 20px 20px;
    color: var(--light-text);
}

.service-card .btn-secondary {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-color);
    text-align: center;
}

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

.testimonial {
    display: none;
    padding: 20px;
}

.testimonial:first-child {
    display: block;
}

.quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.client {
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Recent Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.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 20px 10px;
    font-size: 20px;
}

.post-card p {
    margin: 0 20px 15px;
    color: var(--light-text);
}

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

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

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

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column p, .footer-column address p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-column a {
    color: #ddd;
}

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

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

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

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

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

.copyright {
    text-align: center;
    padding-top: 40px;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    padding: 15px;
}

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

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

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

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

.customize {
    background-color: #666;
    color: white;
}

.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-more-info {
    font-size: 14px;
}

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

/* Services Page */
.services-intro {
    text-align: center;
}

.services-journey {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.journey-chart {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
}

.journey-steps {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.service-detail {
    padding: 80px 0;
}

.alt-bg {
    background-color: var(--secondary-color);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.service-text, .service-image {
    width: 50%;
}

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

.service-text h2 {
    margin-bottom: 25px;
}

.service-text h3 {
    margin: 25px 0 15px;
}

.service-text ul {
    margin-bottom: 25px;
}

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

.service-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 30px 0;
}

.additional-services {
    background-color: white;
    text-align: center;
}

.service-card svg {
    margin: 30px 0 15px;
    color: var(--accent-color);
}

.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2, .cta p {
    color: white;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    margin-top: 20px;
}

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

/* Blog Page */
.blog-intro {
    text-align: center;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.category-tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.trend-chart {
    max-width: 800px;
    margin: 40px auto;
}

.blog-posts {
    background-color: white;
}

.blog-post {
    display: flex;
    margin-bottom: 50px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-image {
    width: 35%;
    min-height: 300px;
}

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

.post-content {
    width: 65%;
    padding: 30px;
}

.post-meta {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 14px;
}

.post-meta span {
    margin-right: 15px;
}

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

.post-content h3 a {
    color: var(--dark-color);
}

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

.newsletter {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--body-font);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 12px 25px;
}

.form-note {
    font-size: 14px;
    color: var(--light-text);
}

/* Blog Post */
.blog-post-content {
    background-color: white;
    padding: 60px 0;
}

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

.post-featured-image {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--accent-color);
}

blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background-color: var(--secondary-color);
    font-style: italic;
}

blockquote p {
    margin-bottom: 10px;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.post-image-full {
    margin: 40px 0;
}

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

.post-image-full .image-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: var(--light-text);
}

.author-bio {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

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

.author-bio h3 {
    margin-bottom: 5px;
}

.post-tags {
    margin: 30px 0;
}

.tag-label {
    font-weight: 600;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
}

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

.share-post {
    margin: 30px 0;
}

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

.share-buttons {
    display: flex;
    gap: 10px;
}

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

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.related-posts {
    margin: 60px 0;
    text-align: center;
}

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

.related-post {
    text-align: left;
}

.related-post img {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    height: 180px;
    object-fit: cover;
}

.related-post h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.nav-previous, .nav-next {
    max-width: 45%;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    color: var(--accent-color);
}

.nav-previous:hover .nav-title, .nav-next:hover .nav-title {
    color: var(--primary-color);
}

.comments-section {
    margin: 60px 0;
}

.comment {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

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

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

.author-info h4 {
    margin-bottom: 5px;
}

.comment-date {
    font-size: 14px;
    color: var(--light-text);
}

.comment-actions {
    margin-top: 15px;
    text-align: right;
}

.reply-link {
    color: var(--primary-color);
    font-weight: 600;
}

.comment-reply {
    margin-left: 50px;
    margin-top: 20px;
    background-color: var(--secondary-color);
}

.comment-form {
    margin-top: 40px;
}

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

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
}

.form-group textarea {
    resize: vertical;
}

/* About Page */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

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

.mission-values {
    background-color: var(--secondary-color);
    text-align: center;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--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 20px 5px;
}

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

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

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

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

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

.our-approach {
    background-color: white;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

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

.approach-text ul {
    margin-bottom: 30px;
}

.approach-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.approach-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.approach-chart {
    margin-top: 40px;
}

.testimonials-section {
    background-color: var(--secondary-color);
}

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

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

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

.quote svg {
    position: absolute;
    top: -10px;
    left: -5px;
}

.quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

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

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

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

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

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

.details h3 {
    margin-bottom: 5px;
}

.details p {
    margin: 0;
    color: var(--light-text);
}

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

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

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

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

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.map-section {
    background-color: var(--secondary-color);
    text-align: center;
}

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

.faq-section {
    background-color: white;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--light-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.toggle-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

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

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
}

.modal-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.close-btn {
    margin-top: 20px;
}

/* Specialty styling for blog post content */
.sustainable-materials, .benefits-grid, .seasons-grid, .fabric-table, .harmony-types, .techniques-grid, .season-transitions, .layering-system, .outfit-formulas, .tips-section, .mistakes-grid, .palette-examples, .undertone-tests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.material-card, .benefit-card, .season-card, .harmony-card, .technique-card, .transition-card, .layer-box, .formula, .tip, .mistake-card, .palette, .test-card, .step-box {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.material-card h3, .season-card h4, .harmony-card h3, .layer-box h4, .formula h3, .palette h4, .test-card h4 {
    color: var(--primary-color);
}

.eco-rating {
    margin-top: 10px;
}

.eco-label {
    font-weight: 600;
}

.rating {
    color: var(--primary-color);
}

.color-wheel-section, .color-temperature, .color-chart, .temperature-chart, .capsule-composition {
    margin: 40px 0;
    text-align: center;
}

.color-wheel-container {
    max-width: 400px;
    margin: 0 auto;
}

.warm-colors, .cool-colors {
    padding: 20px;
}

.warm-colors {
    background-color: rgba(255, 99, 132, 0.1);
}

.cool-colors {
    background-color: rgba(54, 162, 235, 0.1);
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.season-colors, .palette-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.color-dot, .palette-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.harmony-example {
    height: 40px;
    border-radius: var(--border-radius);
    margin: 15px 0;
}

.comparison-table {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.comparison-column {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.fabric-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.fabric-table th, .fabric-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.fabric-table th {
    background-color: var(--primary-color);
    color: white;
}

.fabric-table tr:nth-child(even) {
    background-color: var(--secondary-color);
}

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

.category {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.collection-category {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.care-category {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.practical-tips li {
    margin-bottom: 15px;
}

/* Multilingual text */
[lang] {
    font-style: italic;
    font-size: 0.9em;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
    }
    
    .service-content.reverse {
        flex-direction: column;
    }
    
    .service-text, .service-image {
        width: 100%;
    }
    
    .service-image {
        margin-bottom: 30px;
    }
    
    .service-content.reverse .service-image {
        margin-bottom: 30px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
    
    .comparison-table {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image, .post-content {
        width: 100%;
    }
    
    .post-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
