/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Beauty Salon Color Palette */
    --primary-gold: #d4af37;
    --primary-pink: #ff69b4;
    --dark-gold: #b8941f;
    --light-gold: #f8f4e6;
    --dark-pink: #e55a9b;
    --light-pink: #ffebf5;
    
    /* Neutral Colors */
    --dark-text: #333;
    --medium-text: #666;
    --light-text: #999;
    --white: #ffffff;
    --light-gray: #fafafa;
    --medium-gray: #f8f8f8;
    --border-gray: #ddd;
    
    /* Spacing */
    --container-max: 1200px;
    --border-radius: 8px;
    --border-radius-large: 15px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-gray);
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content h3 {
    margin-bottom: 10px;
    color: #d4af37;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-buttons .btn {
    margin: 0 5px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo span {
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.btn-primary {
    background: #d4af37;
}

.btn-secondary {
    background: #666;
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: white;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37, #ff69b4);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff69b4, #d4af37);
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-graphic {
    margin: 40px 0;
}

/* Page Layout */
.page-main {
    margin-top: 70px;
}

.page-header {
    background: linear-gradient(135deg, #d4af37, #ff69b4);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.section-icon {
    margin-bottom: 20px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text h2 {
    margin-bottom: 30px;
    color: #d4af37;
}

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

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: #d4af37;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.service-icon {
    margin-bottom: 20px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.team-role {
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.philosophy-item {
    text-align: center;
    padding: 30px;
}

.philosophy-item h3 {
    color: #d4af37;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.philosophy-icon {
    margin-bottom: 20px;
}

/* Certifications */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #d4af37;
}

.cert-item h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-preview {
    margin: 50px 0;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial footer {
    color: #d4af37;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Services Detailed */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-detail {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d4af37;
}

.service-detail h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-icon-inline {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff69b4;
    margin-top: 20px;
}

.service-duration {
    color: #666;
    margin-top: 5px;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
}

.form-submit {
    align-self: center;
    min-width: 200px;
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.contact-info-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-item h3 {
    color: #d4af37;
    margin: 20px 0 15px;
}

.contact-icon {
    margin-bottom: 20px;
}

/* Opening Hours */
.opening-hours {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-item.closed {
    color: #999;
}

.day {
    font-weight: bold;
}

.time {
    color: #d4af37;
    font-weight: bold;
}

.hours-item.closed .time {
    color: #999;
}

.hours-note {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.hours-note p:first-child {
    color: #d4af37;
    font-weight: bold;
}

/* Location */
.location-info {
    margin: 50px 0;
}

.location-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.location-info li {
    margin-bottom: 8px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #d4af37;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: #d4af37;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Feedback Section */
.feedback-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

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

.feedback-option {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feedback-option h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.feedback-option p {
    margin-bottom: 25px;
    color: #666;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background: #d4af37;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-content h2 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #d4af37;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #d4af37;
}

/* Newsletter */
.newsletter-signup {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-signup p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.form-row input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-row input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-consent {
    text-align: left;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #d4af37;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-content h3 {
    color: #333;
    margin: 30px 0 15px;
}

.legal-content h4 {
    color: #666;
    margin: 20px 0 10px;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-updated {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.business-info {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #d4af37;
    margin: 25px 0;
    font-style: normal;
}

.business-info strong {
    color: #d4af37;
}

/* Cookie Management */
.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #d4af37;
    color: white;
    font-weight: bold;
}

.cookie-table tr:hover {
    background: #f8f8f8;
}

.cookie-settings {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.cookie-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.cookie-category {
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.cookie-category:hover {
    border-color: #d4af37;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

/* Blog Articles */
.blog-article {
    margin-top: 70px;
}

.article-header {
    background: linear-gradient(135deg, #d4af37, #ff69b4);
    color: white;
    padding: 60px 0 40px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.article-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

.article-image {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-content {
    padding: 60px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.article-body {
    line-height: 1.8;
}

.article-body .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.article-body h2 {
    color: #d4af37;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
    font-size: 2rem;
}

.article-body h3 {
    color: #333;
    margin: 35px 0 20px;
    font-size: 1.4rem;
}

.article-body h4 {
    color: #666;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
}

/* Special Boxes */
.tip-box, .highlight-box, .info-box {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #d4af37;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f4e6, #f0f8ff);
    border-left: 5px solid #ff69b4;
    text-align: center;
}

.highlight-box h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.info-box {
    background: #e6f3ff;
    border-left: 5px solid #3498db;
}

/* Myth/Fact Boxes */
.myth-fact-box {
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    border-left: 5px solid;
}

.myth-fact-box.myth {
    background: #ffebee;
    border-left-color: #e74c3c;
}

.myth-fact-box.fact {
    background: #e8f5e8;
    border-left-color: #27ae60;
}

.myth-fact-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Step by Step */
.step-by-step {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

.step-by-step ol {
    margin: 0;
    padding-left: 20px;
}

.step-by-step li {
    margin-bottom: 12px;
    padding-left: 10px;
}

/* Color Palette & Swatches */
.color-palette {
    margin: 30px 0;
}

.color-palette h3 {
    color: #d4af37;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

/* Article Sidebar */
.article-sidebar {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.article-author {
    text-align: center;
    margin-bottom: 40px;
}

.author-avatar {
    margin-bottom: 20px;
}

.author-info h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.related-services, .trend-colors, .effective-ingredients, .quick-tips {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.related-services:last-child,
.trend-colors:last-child,
.effective-ingredients:last-child,
.quick-tips:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-services h4,
.trend-colors h4,
.effective-ingredients h4,
.quick-tips h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.related-services ul,
.effective-ingredients ul,
.quick-tips ul {
    list-style: none;
    padding: 0;
}

.related-services li,
.effective-ingredients li,
.quick-tips li {
    margin-bottom: 8px;
}

.related-services a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-services a:hover {
    color: #d4af37;
}

/* Article Conclusion */
.article-conclusion {
    background: linear-gradient(135deg, #f8f4e6, #f0f8ff);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    border-left: 5px solid #d4af37;
}

.article-conclusion h2 {
    color: #d4af37;
    border-bottom: none;
    margin-bottom: 20px;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    margin-bottom: 20px;
}

.category-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-count {
    background: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #d4af37;
    margin: 30px 0 15px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
    text-align: left;
}

.thanks-info h2 {
    color: #d4af37;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #d4af37;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
}

.thanks-contact {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    margin: 50px 0;
}

.thanks-contact h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 1.3rem;
    color: #ff69b4;
    font-weight: bold;
    margin: 15px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-preview {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .thanks-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .feedback-options {
        grid-template-columns: 1fr;
    }

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

    .newsletter-signup {
        margin: 20px;
        padding: 30px 20px;
    }

    .legal-content {
        padding: 0 20px;
    }

    .legal-content ul, .legal-content ol {
        padding-left: 20px;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }

    .cookie-settings {
        margin: 20px;
        padding: 20px;
    }

    .cookie-controls {
        gap: 15px;
    }

    .cookie-category {
        padding: 15px;
    }

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

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .color-swatches {
        justify-content: center;
    }

    .step-by-step {
        padding: 20px 15px;
    }

    .tip-box, .highlight-box, .info-box, .myth-fact-box {
        margin: 20px;
        padding: 20px;
    }

    .article-conclusion {
        margin: 30px 20px;
        padding: 30px 20px;
    }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .cookie-banner, .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero, .page-header {
        background: none;
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #b8860b;
        --primary-pink: #c71585;
        --dark-text: #000;
        --medium-text: #333;
    }
}