/* ===========================
   Thisdomaindontexist123 Styles
   Elegant Swedish Handmade Decor
   =========================== */

:root {
    --primary-color: #ecbc00;
    --secondary-color: #feff1c;
    --accent-color: #be8bd2;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

p {
    margin-bottom: 1rem;
}

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

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-link {
        padding: 0.5rem 0;
        margin: 0;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-hero-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 188, 0, 0.3);
}

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

.btn-hero-secondary:hover {
    background-color: #a76bc0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(190, 139, 210, 0.3);
}

/* Interactive Hero Grid */
.hero-image-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    z-index: 1;
}

.hero-grid-item {
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-grid-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

/* ===========================
   About Studio Section
   =========================== */
.about-studio-section {
    background-color: var(--background-light);
}

.studio-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.about-masters {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-masters h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.master-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.master-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.master-card i {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.master-card h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.master-card p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.master-desc {
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
}

/* ===========================
   Products Showcase
   =========================== */
.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ===========================
   Advantages Section
   =========================== */
.advantages-section {
    background-color: var(--background-light);
}

.advantage-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Accordion / FAQ
   =========================== */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2c2c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--white);
}

/* ===========================
   Trust Badges
   =========================== */
.trust-badges {
    background-color: var(--white);
}

.trust-badge {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-badge h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section .lead {
    color: var(--white);
    opacity: 0.95;
}

.btn-cta {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--background-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: var(--text-dark);
}

/* ===========================
   Intro Section
   =========================== */
.intro-section {
    background-color: var(--white);
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
}

.feature-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-highlight i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

/* ===========================
   Products Grid
   =========================== */
.product-grid-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-grid-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.product-grid-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-grid-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    background-color: var(--background-light);
}

.process-step {
    padding: 2rem 1rem;
}

.process-icon {
    margin-bottom: 1rem;
}

.process-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Contact Section
   =========================== */
.contact-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 188, 0, 0.25);
}

.contact-info-box {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.contact-details a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.studio-visit-box {
    background-color: #fff5e6;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.studio-visit-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.studio-visit-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===========================
   Map Section
   =========================== */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    min-height: 450px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

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

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

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

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

.footer hr {
    border-color: rgba(255,255,255,0.2);
}

.footer-legal-link {
    color: rgba(255,255,255,0.8);
    margin: 0 0.75rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-cookie-link:hover {
    color: var(--secondary-color);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(236, 188, 0, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* ===========================
   Responsive Design
   =========================== */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 30%;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-image,
    .product-grid-image {
        height: 200px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr;
        height: 25%;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .product-card,
    .product-grid-card,
    .advantage-card {
        margin-bottom: 1.5rem;
    }
    
    .master-card {
        flex-direction: column;
        text-align: center;
    }
    
    .process-icon i {
        font-size: 3rem;
    }
}

/* 320px width support */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-primary-color {
    color: var(--primary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.text-accent-color {
    color: var(--accent-color) !important;
}

.bg-accent-color {
    background-color: var(--accent-color) !important;
}

/* ===========================
   Legal Document Styling
   =========================== */
.legal-content {
    background-color: var(--background-light);
}

.legal-document {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.legal-document h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.legal-document h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-document strong {
    color: var(--text-dark);
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-document a:hover {
    color: var(--accent-color);
}

.legal-document .alert {
    border-radius: 8px;
    border: none;
}

/* ===========================
   Category Cards
   =========================== */
.category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.category-content {
    padding: 2rem;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* ===========================
   Master Profiles
   =========================== */
.master-profile {
    margin-bottom: 3rem;
}

.master-photo {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.master-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.master-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.master-expertise {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.master-expertise h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.master-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.master-expertise li {
    padding: 0.5rem 0;
}

.master-quote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--background-light);
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.master-quote i {
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.master-quote p {
    margin: 0;
    padding-left: 2rem;
}

/* ===========================
   Values & Timeline
   =========================== */
.value-card {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ===========================
   Custom Features
   =========================== */
.custom-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.custom-info-box {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
}

.custom-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.custom-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 0;
}

.custom-steps li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.custom-steps li strong:before {
    content: counter(step-counter) ". ";
}

/* ===========================
   Care Cards
   =========================== */
.care-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.care-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===========================
   Why Choose Cards
   =========================== */
.why-card {
    padding: 1.5rem;
}

.why-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
