/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #ca9aa5;
    --primary-dark: #a67b84;
    --primary-light: #f0d9de;
    --secondary-color: #2a363b;
    --secondary-light: #4a565b;
    --accent-color: #e84a5f;
    --text-color: #333333;
    --light-text: #666666;
    --lightest-text: #999999;
    --light-bg: #f9f5f6;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

section {
    padding: 60px 0;
}

/* Buttons */
.btn, button.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

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

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

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

.btn-tertiary {
    background: none;
    color: var(--primary-color);
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
}

.btn-tertiary:hover {
    background: none;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    float: left;
}

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

nav {
    float: right;
    padding-top: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

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

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

nav ul li a.active::after, nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background-color: var(--light-bg);
    text-align: center;
    padding: 120px 0 60px;
}

.page-header h1 {
    margin-bottom: 1rem;
}

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

/* Introduction Section */
.intro {
    background-color: var(--white);
    padding: 80px 0;
}

.story-box {
    border: 1px solid var(--primary-light);
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    position: relative;
    margin-top: 40px;
}

.story-box::before {
    content: """;
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 100px;
    color: var(--primary-light);
    height: 60px;
    line-height: 1;
}

/* Comparison Table */
.comparison {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

th {
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

tbody tr {
    background-color: var(--white);
}

tbody tr:nth-child(even) {
    background-color: var(--primary-light);
}

tbody tr:hover {
    background-color: rgba(202, 154, 165, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

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

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

.testimonial {
    padding: 30px;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding: 0 40px;
}

.quote::before, .quote::after {
    content: """;
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    position: absolute;
    color: var(--primary-light);
    line-height: 1;
}

.quote::before {
    left: 0;
    top: -20px;
}

.quote::after {
    content: """;
    right: 0;
    bottom: -40px;
}

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

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
}

.post-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

.preview-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

.preview-card p {
    padding: 0 20px 20px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.preview-card .btn-tertiary {
    margin: 0 20px 20px;
    display: inline-block;
}

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

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

.blog-post {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.post-content {
    flex: 2;
    padding: 30px;
    min-width: 300px;
}

.post-date {
    color: var(--lightest-text);
    margin-bottom: 10px;
    display: inline-block;
    font-size: 0.9rem;
}

.post-content h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

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

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

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter */
.newsletter {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

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

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

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

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* Single Post */
.single-post-header {
    background-color: var(--light-bg);
    padding: 120px 0 40px;
    text-align: center;
}

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

.post-meta span {
    display: inline-block;
    margin: 0 10px;
    color: var(--light-text);
}

.single-post-content {
    padding: 60px 0;
}

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

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

.post-body {
    margin-bottom: 60px;
}

.post-body h2, .post-body h3, .post-body h4 {
    margin-top: 2rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.post-tags a {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.share-post {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.share-post span {
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: 15px;
}

.share-post a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

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

.post-author-bio img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
}

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

.author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

.related-post {
    flex: 1;
    min-width: 250px;
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
}

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

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

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-content .btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: var(--light-bg);
    transition: var(--transition);
}

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

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

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.social-icons {
    display: flex;
    margin-top: 20px;
}

.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%;
    margin-right: 10px;
    transition: var(--transition);
}

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

.social-icons svg {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-bg);
}

.copyright p {
    margin-bottom: 5px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 2;
    min-width: 300px;
    margin-bottom: 15px;
}

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

.btn-accept, .btn-customize, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.btn-customize {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

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

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

.btn-decline:hover {
    text-decoration: underline;
}

.cookie-policy {
    flex: 100%;
    font-size: 0.9rem;
    margin-top: 10px;
}

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

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

/* Services Page */
.services-intro {
    padding: 60px 0;
}

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

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

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

.services-intro-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.service-list {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.service-details h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-details ul {
    margin-bottom: 30px;
}

.product-selection {
    padding: 60px 0;
    text-align: center;
}

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

.product-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.brand {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
}

.brand h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.brand ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.brand li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.brand li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-note {
    font-style: italic;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    background-color: var(--white);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active h3::after {
    content: '−';
}

.faq-item h3:hover {
    background-color: var(--light-bg);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

/* About Page */
.about-story {
    padding: 60px 0;
}

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

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

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

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

.our-approach {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.approach-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

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

.team {
    padding: 60px 0;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    margin-bottom: 5px;
}

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

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

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

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

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

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

.credential-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.credential-icon {
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.credential-text h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

.studio-info {
    padding: 60px 0;
    text-align: center;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.gallery-images img {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius-md);
    height: 250px;
    object-fit: cover;
}

/* Contact Page */
.contact-info {
    padding: 60px 0;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-methods {
    flex: 1.5;
    min-width: 300px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.method-icon {
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-details h3 {
    margin-bottom: 10px;
}

.method-details .note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 5px;
}

.social-links-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links-contact a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

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

.business-hours {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-responsive {
    height: 400px;
}

.map-responsive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 54, 59, 0.8);
    color: var(--white);
    padding: 20px;
}

.contact-form-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    flex: 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;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: 'Montserrat', sans-serif;
    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 3px rgba(202, 154, 165, 0.2);
}

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

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

.form-submit {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

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

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

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--light-text);
}

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

.thank-you-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    nav {
        float: none;
        clear: both;
        text-align: center;
        padding-top: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image {
        height: 250px;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-bio img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        height: 70vh;
    }
    
    .card, .preview-card {
        min-width: 100%;
    }
    
    .gallery-images img {
        min-width: 100%;
    }
    
    .modal-content {
        width: 90%;
        padding: 30px;
    }
}
