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

body {
    font-family: "Mozilla Text", sans-serif;

    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #000;
    color: white;
    border-color: #000;
}

.btn-primary:hover {
    background-color: white;
    color: #000;
}

/* Header button styles - initially transparent */
.header .btn-primary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.header .btn-primary:hover {
    background-color: white;
    color: #000;
}

/* Header button when scrolled */
.header.scrolled .btn-primary {
    background-color: #000;
    color: white;
    border-color: #000;
    padding: 10px 20px;
}

.header.scrolled .btn-primary:hover {
    background-color: transparent !important;
    color: #fff !important;
}

.btn-secondary {
    background-color: white;
    color: #000;
    border-color: white;
}

.btn-secondary:hover {
    background-color: #000;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header Layout */
.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
}

.header .social-links {
    justify-self: start;
}

.header .social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header .social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Social links when scrolled */
.header.scrolled .social-links a {
    color: #fff;
}

.header.scrolled .social-links a:hover {
    color: #fff;
}

.header-cta {
    justify-self: end;
}

.logo {
    justify-self: center;
    margin-left: 8%;
}

.logo img {
    max-width: 120px;
    transition: all 0.3s ease;
}

/* Logo when scrolled - smaller */
.header.scrolled .logo img {
    max-width: 80px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

/* Header when scrolled */
.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Header transparent state (initial) */
.header.transparent {
    background: transparent;
}

/* Main Navigation */
.main-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: border-color 0.3s ease;
}

/* Navigation border when scrolled */
.header.scrolled .main-nav {
    border-top: 1px solid #eee;
}

.main-nav .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-item a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-item a:hover,
.nav-item.active a {
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation when scrolled */
.header.scrolled .nav-item a {
    color: #fff;
}

.header.scrolled .nav-item a:hover,
.header.scrolled .nav-item.active a {
    color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    @media (max-width: 768px) {
        top: 40px;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile toggle when scrolled */
.header.scrolled .mobile-menu-toggle span {
    background-color: #333;
}

/* Hero Section */
.hero {
    background: url("https://juvenelledayspa.com/assets/images/herospa.jpg") center/cover no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 600px;
    @media (max-width: 768px) {
        min-height: 400px;
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: white;
    font-family: "Georgia", serif;
    font-weight: 300;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

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

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #eeaa55;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: #eeaa55;
    margin-bottom: 1rem;
}

/* Service Menu */
.service-menu {
    padding: 50px 0;
    background-color: white;
}

.service-categories {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 2rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.service-categories::-webkit-scrollbar {
    display: none;
}

.service-categories-container {
    display: flex;
    gap: 1rem;
    min-width: max-content;
}

.service-category {
    text-align: center;
    padding: 1rem 2.5rem;
    background-color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    min-width: 120px;
}

.service-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #eeaa55;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.category-icon i {
    font-size: 1.3rem;
    color: #000;
}

.service-category:hover .category-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.service-category h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
}

.service-description {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

.service-description p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

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

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

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

.service-content {
    padding: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: #666;
}

/* Philosophy */
.philosophy {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
}

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

.philosophy-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.philosophy-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Beauty Box */
.beauty-box {
    padding: 100px 0;
    background-color: white;
}

.beauty-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beauty-box-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.beauty-box-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.beauty-box-image {
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
}

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

/* Popular Services */
.popular-services {
    padding: 80px 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #e8f4f8;
    text-align: center;
}

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

.testimonial-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 2rem;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote p {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.testimonial-author {
    margin-bottom: 2rem;
}

.testimonial-author span {
    font-size: 1rem;
    color: #666;
    font-family: sans-serif;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.testimonial-nav-btn:hover {
    color: #eeaa55;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #eeaa55 0%, #ffa500 100%);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #000;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #eeaa55;
    background-color: transparent;
    color: #eeaa55;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Mozilla Text", sans-serif;

}

.tab-btn.active,
.tab-btn:hover {
    background-color: #eeaa55;
    color: #000;
}

.service-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #eeaa55;
}

.service-icon {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Special Offers */
.special-offers {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.offer-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.offer-price {
    margin: 1rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
}

.new-price {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Blog */
.blog-categories {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #eeaa55;
    color: #000;
    border-color: #eeaa55;
}

.blog-posts {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-meta .category {
    color: #fff;
    font-weight: 500;
}

.post-meta .date {
    color: #666;
}

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

.post-content h2 a {
    color: #333;
    text-decoration: none;
}

.post-content h2 a:hover {
    color: #eeaa55;
}

.post-footer {
    margin-top: 1rem;
}

.read-more {
    color: #eeaa55;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #666;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: #eeaa55;
    color: white;
    border-color: #eeaa55;
}

/* Homepage Contact Info Section */
.homepage-contact-info {
    color: white;
    padding: 60px 0;
    margin-top: -275px;
    position: relative;
    z-index: 1;
    @media (max-width: 768px) {
        margin-top: 0;
        background-color: #000;
    }
}

.homepage-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.homepage-contact-item h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.homepage-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gallery-grid .section-header p {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-follow {
    text-align: center;
    margin-top: 3rem;
}

.gallery-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    background-color: #eeaa55;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(238, 170, 85, 0.3);
}

.gallery-follow-btn:hover {
    background-color: #ffa500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 170, 85, 0.4);
    color: white;
}

.gallery-follow-btn i {
    font-size: 1.2rem;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.newsletter-content {
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 300px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #eeaa55;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    color: #eeaa55;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.3;
}

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

/* Contact Info */
.contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-info i {
    color: #eeaa55;
    margin-right: 0.8rem;
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #eeaa55;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* About Page */
.about-hero {
    background: url('../images/image-140-1024x1024.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 100px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-text {
    direction: ltr;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    min-width: 180px;
}

/* Services Page */
.services-hero {
    background: url('../images/image-143.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
}

.services-overview {
    padding: 80px 0;
}

.services-categories {
    margin-bottom: 4rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #eeaa55;
    background: transparent;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #eeaa55;
    color: #000;
}

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

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 2rem;
}

.service-content {
    padding: 0 2rem 2rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.duration {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duration i {
    color: #eeaa55;
}

.price {
    color: #eeaa55;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-content .btn {
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #eeaa55;
    background: transparent;
    color: #eeaa55;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-content .btn:hover {
    background: #eeaa55;
    color: #000;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .cta-buttons .btn {
    min-width: 180px;
}

/* Services Overview Page */
.services-overview {
    padding: 80px 0;
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-overview .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.services-overview .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.services-category {
    margin-bottom: 4rem;
}

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

.services-overview .service-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.services-overview .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-overview .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(238, 170, 85, 0.3);
}

.services-overview .service-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-overview .service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.services-overview .service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.services-overview .duration {
    color: #666;
}

.services-overview .price {
    color: #eeaa55;
    font-weight: 600;
}

.services-overview .btn {
    width: 100%;
    text-align: center;
}

.category-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-family: "Georgia", serif;
    font-weight: 300;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    border-radius: 2px;
}

.back-to-home {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 12px 24px;
}

/* Service Detail Page */
.service-hero {
    background: url('../images/image-143.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #eeaa55;
}

.breadcrumb span {
    color: #eeaa55;
    font-weight: 600;
}

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

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.service-meta .category {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-meta .duration,
.service-meta .price {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.service-meta .duration i,
.service-meta .price i {
    color: #eeaa55;
}

.service-description h2,
.service-benefits h3,
.service-includes h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-benefits ul,
.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-benefits li,
.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.service-benefits i {
    color: #eeaa55;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-includes i {
    color: #ffa500;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.service-actions .btn {
    min-width: 180px;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-services .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.related-services .section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .service-image {
    height: 200px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-card .service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.service-card .duration {
    color: #666;
}

.service-card .price {
    color: #eeaa55;
    font-weight: 600;
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.service-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta .cta-buttons .btn {
    min-width: 180px;
}

/* Blog Page */
.blog-hero {
    background: url('../images/blog-banner.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
}

.blog-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #eeaa55;
    background: transparent;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #eeaa55;
    color: #000;
}

.blog-posts {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

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

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.date {
    color: #666;
}

.post-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.post-content h2 a:hover {
    color: #eeaa55;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.read-more {
    color: #eeaa55;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffa500;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    padding: 12px 16px;
    border: 2px solid #eeaa55;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover,
.page-link.active {
    background: #eeaa55;
    color: #000;
}

.page-link.next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 15px 30px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: #333;
}

/* Contact Page */
.contact-hero {
    background: url('../images/image-142.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
}

.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: #eeaa55;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffa500;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.contact-form-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: "Mozilla Text", sans-serif;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.contact-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container {
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    padding: 2rem;
}

.map-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

.map-feature i {
    color: #eeaa55;
    width: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    font-family: "Georgia", serif;
    font-weight: 300;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #eeaa55;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    min-width: 180px;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail .service-image img {
    width: 100%;
    border-radius: 10px;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-meta span {
    padding: 5px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-benefits ul {
    list-style: none;
    margin-top: 1rem;
}

.service-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-benefits li i {
    position: absolute;
    left: 0;
    color: #eeaa55;
}

.service-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Error Page */
.error-page {
    padding: 100px 0;
    text-align: center;
}

.error-number {
    font-size: 8rem;
    color: #eeaa55;
    font-weight: bold;
    margin-bottom: 1rem;
}

.error-actions {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links {
    margin-top: 3rem;
}

.helpful-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links a {
    color: #eeaa55;
    text-decoration: none;
    font-weight: 500;
}

.helpful-links a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.main-nav.active .nav-item a {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .header .social-links {
        justify-self: center;
        display: none;
    }

    .header-cta {
        justify-self: center;
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .philosophy-grid,
    .beauty-box-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-categories {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }

    .service-category {
        padding: 0.8rem 0.3rem;
        min-width: 100px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
    }

    .category-icon i {
        font-size: 1.1rem;
    }

    .service-category h3 {
        font-size: 0.75rem;
        color: #000;
        font-weight: 600;
    }

        .gallery-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .testimonial-content h3 {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.5rem;
    }
    
    .testimonial-author span {
        font-size: 0.9rem;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homepage-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-hero-title {
        font-size: 2.8rem;
    }
    
    .category-tabs {
        gap: 0.8rem;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-hero-title {
        font-size: 2.8rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .service-hero-title {
        font-size: 2.8rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .related-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .category-tabs,
    .category-filters {
        flex-direction: column;
        align-items: center;
    }

        .service-categories {
        gap: 0.6rem;
        padding: 0.6rem 0;
    }
    
    .service-category {
        padding: 0.6rem 0.2rem;
        min-width: 90px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .service-category h3 {
        font-size: 0.7rem;
        color: #000;
        font-weight: 600;
    }
    
    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .homepage-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .testimonial-content h3 {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-quote p {
        font-size: 1.3rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 200px;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-overview .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .service-hero-title {
        font-size: 2.2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .related-services .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-hero-title {
        font-size: 2.8rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 250px;
    }
    
    .contact-hero-title {
        font-size: 2.8rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section a {
        font-size: 0.75rem;
    }
}

/* Products Page Styles */
.products-hero {
    background: url('../images/image-144.jpg') center/cover no-repeat;
    color: white;
    padding: 250px 0 50px;
    text-align: center;
    position: relative;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.products-hero-content {
    position: relative;
    z-index: 2;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: "Georgia", serif;
}

.products-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Overview */
.products-overview {
    padding: 80px 0;
    background: #fff;
}

.products-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.products-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

.products-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #eeaa55;
}

.product-category-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(238, 170, 85, 0.3);
    transition: all 0.3s ease;
}

.product-category:hover .product-category-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(238, 170, 85, 0.4);
}

.product-category-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-category-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.product-category-content {
    padding: 2rem;
}

.product-category-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Benefits */
.product-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-content {
    text-align: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: "Georgia", serif;
    font-weight: 300;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(238, 170, 85, 0.3);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Product Consultation */
.product-consultation {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consultation-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.consultation-buttons .btn {
    min-width: 180px;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2.8rem;
    }
    
    .products-hero-subtitle {
        font-size: 1rem;
    }
    
    .products-intro h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-category-header {
        padding: 1.5rem;
    }
    
    .product-category-content {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .consultation-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-hero-title {
        font-size: 2.2rem;
    }
    
    .products-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .products-intro h2 {
        font-size: 1.8rem;
    }
    
    .products-intro p {
        font-size: 1rem;
    }
    
    .product-category-header {
        padding: 1.5rem 1rem;
    }
    
    .product-category-content {
        padding: 1.5rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .consultation-content h2 {
        font-size: 1.8rem;
    }
    
    .consultation-content p {
        font-size: 1rem;
    }
    
    .consultation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Blog Detail Page */
.blog-detail-content {
    padding: 80px 0;
    background: #fff;
}

.blog-detail-content .container {
    max-width: 800px;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta .category {
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-intro {
    margin-bottom: 3rem;
}

.blog-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.blog-section {
    margin-bottom: 3rem;
}

.blog-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 4px solid #eeaa55;
    padding-left: 1rem;
}

.blog-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.blog-section h4 {
    font-size: 1.2rem;
    color: #555;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.blog-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-section ul,
.blog-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #666;
}

.blog-section strong {
    color: #333;
    font-weight: 600;
}

.blog-conclusion {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #eeaa55;
}

.blog-conclusion h2 {
    color: #333;
    border-left: none;
    padding-left: 0;
}

.blog-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #eeaa55, #ffa500);
    border-radius: 20px;
    text-align: center;
    color: #000;
}

.blog-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #000;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    margin: 0;
}

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

.cta-buttons .btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Related Blog Posts */
.related-blog-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-blog-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-post .post-image {
    height: 200px;
    overflow: hidden;
}

.related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .post-image img {
    transform: scale(1.05);
}

.related-post .post-content {
    padding: 1.5rem;
}

.related-post .post-meta {
    margin-bottom: 1rem;
}

.related-post h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-post h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h3 a:hover {
    color: #eeaa55;
}

.related-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.related-post .post-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Blog Hero for Detail Page */
.blog-hero .blog-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.blog-hero .blog-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-content .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-section h2 {
        font-size: 1.6rem;
    }
    
    .blog-section h3 {
        font-size: 1.2rem;
    }
    
    .blog-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero .blog-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-detail-content {
        padding: 40px 0;
    }
    
    .blog-section {
        margin-bottom: 2rem;
    }
    
    .blog-conclusion,
    .blog-cta {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}
