        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #F39C12;
            --secondary-color: #2C3E50;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --bg-light: #F5F5F5;
            --bg-white: #FFFFFF;
            --border-color: #E0E0E0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #FAFAFA;
        }

        /* Header & Navigation */
                   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF8C42;
            --dark-color: #1A1A1A;
            --light-bg: #F5F0E8;
            --gray-text: #666666;
            --light-gray: #F9F9F9;
            --white: #FFFFFF;
            --border-radius: 12px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-text);
        }

        /* ========== HEADER & NAVIGATION ========== */
        header {
            background-color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: rgb(0, 0, 0);
            font-family: Serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--gray-text);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #E67E2A;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #ECE8E1 0%, #F5F1EB 100%);
            padding: 80px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            flex: 1;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .breadcrumb {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 13px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
        }

        .breadcrumb span {
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .hero-image {
            flex: 1;
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, #E8D4C4 0%, #D9C4B4 100%);
            border-radius: 150px 20px 20px 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: rgba(0,0,0,0.1);
        }

        /* Main Content Section */
        .content-section {
            display: flex;
            gap: 40px;
            padding: 60px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .sidebar {
            width: 250px;
            flex-shrink: 0;
        }

        .sidebar-item {
            background: var(--bg-white);
            padding: 15px 20px;
            margin-bottom: 10px;
            border-left: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            font-weight: 500;
        }

        .sidebar-item:hover {
            border-left-color: var(--primary-color);
            background-color: #FFF9F0;
        }

        .sidebar-item.active {
            background-color: var(--primary-color);
            color: white;
            border-left-color: var(--primary-color);
        }

        .main-content {
            flex: 1;
        }

        .content-header {
            margin-bottom: 40px;
        }

        .content-header h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .service-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #D9C4B4 0%, #E8D4C4 100%);
            border-radius: 10px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: rgba(0,0,0,0.1);
        }

        .content-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0;
        }

        .service-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .card-number {
            font-size: 24px;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 13px;
            line-height: 1.6;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            margin: 15px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        /* Guide Section */
        .guide-section {
            background: var(--bg-white);
            padding: 60px 50px;
            margin: 60px 0;
        }

        .guide-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--text-dark);
            text-align: center;
        }

        .guide-intro {
            color: var(--text-light);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 14px;
            line-height: 1.8;
        }

        .guide-items {
            max-width: 800px;
            margin: 0 auto;
        }

        .guide-item {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding: 20px;
            background: #FFF9F0;
            border-left: 3px solid var(--primary-color);
            border-radius: 5px;
        }

        .guide-item-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .guide-item-text {
            color: var(--text-light);
            font-size: 13px;
            line-height: 1.6;
        }

        /* Best Care Section */
        .best-care {
            background: var(--secondary-color);
            color: white;
            padding: 40px;
            border-radius: 8px;
            max-width: 300px;
            margin: 40px 0;
        }

        .best-care h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
        }

        .best-care-list {
            list-style: none;
        }

        .best-care-list li {
            margin-bottom: 15px;
            font-size: 13px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .best-care-list li:before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
            font-size: 16px;
            flex-shrink: 0;
        }

        .best-care-arrow {
            margin-top: 25px;
            font-size: 24px;
            text-align: center;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            justify-content: space-between;
            margin: 60px 0;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-light);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: #1A1A1A;
            color: white;
            padding: 60px 50px 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #B8B8B8;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .newsletter-box {
            background: #2A2A2A;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .newsletter-box h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .newsletter-box p {
            color: #B8B8B8;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .newsletter-input {
            display: flex;
            gap: 10px;
        }

        .newsletter-input input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 13px;
        }

        .newsletter-input button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .newsletter-input button:hover {
            background-color: #E67E22;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 12px;
            color: #888;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1A1A1A;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }

            nav {
                flex-wrap: wrap;
                gap: 15px;
            }

            .hero {
                flex-direction: column;
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .content-section {
                flex-direction: column;
                padding: 40px 20px;
            }

            .sidebar {
                width: 100%;
                display: flex;
                gap: 10px;
                overflow-x: auto;
            }

            .sidebar-item {
                flex-shrink: 0;
            }

            .service-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }
