        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cream: #FFF8E7;
            --navy: #1e3a5f;
            --gold: #c9a961;
            --light-blue: #4a7ba7;
            --text-dark: #2c3e50;
            --text-light: #6b7280;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--cream);
            overflow: hidden;
        }

        body.no-scroll {
            overflow: hidden;
        }

        /* Disclaimer Lightbox */
        .disclaimer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 58, 95, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .disclaimer-overlay.hidden {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .disclaimer-box {
            background: white;
            max-width: 650px;
            width: 90%;
            margin: 20px;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .disclaimer-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--light-blue) 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }

        .disclaimer-header svg {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
        }

        .disclaimer-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .disclaimer-content {
            padding: 2rem;
            max-height: 60vh;
            overflow-y: auto;
        }

        .disclaimer-content p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .disclaimer-actions {
            padding: 0 2rem 2rem;
            display: flex;
            gap: 1rem;
        }

        .disclaimer-btn {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .btn-accept {
            background: var(--navy);
            color: white;
        }

        .btn-accept:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
        }

        .btn-decline {
            background: #e5e7eb;
            color: var(--text-dark);
        }

        .btn-decline:hover {
            background: #d1d5db;
        }

        /* Main Layout */
        #mainContent {
            display: none;
            height: 100vh;
            overflow: hidden;
        }

        #mainContent.visible {
            display: flex;
        }

        /* Left Sidebar */
        .sidebar {
            width: 25%;
            height: 100vh;
            background: linear-gradient(180deg, var(--navy) 0%, var(--light-blue) 100%);
            color: white;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            position: fixed;
            left: 0;
            top: 0;
            overflow-y: auto;
        }

        .sidebar-logo {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            border: 3px solid var(--gold);
        }

        .sidebar-logo img {
            max-width: 100%;
            height: auto;
        }

        .sidebar-description {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .sidebar-nav {
            margin-bottom: 3rem;
        }

        .sidebar-nav h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .sidebar-nav ul {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 0.8rem;
        }

        .sidebar-nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
            display: block;
            padding: 0.5rem 0;
            border-left: 3px solid transparent;
            padding-left: 1rem;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            color: var(--gold);
            border-left-color: var(--gold);
        }

        .sidebar-contact {
            margin-top: auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .sidebar-contact h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .sidebar-contact p {
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            opacity: 0.95;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            text-decoration: none;
            padding: 0.75rem;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }

        .contact-item svg {
            flex-shrink: 0;
            opacity: 0.9;
        }

        .contact-item span {
            opacity: 0.95;
            word-break: break-word;
        }

        /* Right Content Area */
        .content-area {
            width: 75%;
            height: 100vh;
            margin-left: 25%;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

        /* Sections */
        section {
            padding: 5rem 4rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        section:nth-child(odd) {
            background: var(--cream);
        }

        section:nth-child(even) {
            background: white;
        }

        .section-content {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--navy);
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .about-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 2rem;
            display: block;
        }

        .credentials {
            background: linear-gradient(135deg, var(--navy) 0%, var(--light-blue) 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        .credentials::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .credentials h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
            position: relative;
        }

        .credentials p {
            position: relative;
        }

        .usp-box {
            background: linear-gradient(135deg, var(--gold) 0%, #d4b972 100%);
            color: var(--navy);
            padding: 3rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 3rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .usp-box::before {
            content: '';
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .usp-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .usp-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .usp-box p {
            font-size: 1.15rem;
            line-height: 1.8;
            position: relative;
        }

        /* Services Section */
        .services-intro {
            max-width: 700px;
            margin-bottom: 3rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--cream);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--gold);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }

        .service-card h3 {
            color: var(--navy);
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h3 {
            color: var(--navy);
            font-family: 'Playfair Display', serif;
            margin-bottom: 2rem;
            font-size: 1.6rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 2rem;
        }

        .contact-details {
            font-size: 0.95rem;
        }

        .contact-details p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .contact-details strong {
            color: var(--navy);
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-details a {
            color: var(--light-blue);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--navy);
        }

        .contact-form h3 {
            color: var(--navy);
            font-family: 'Playfair Display', serif;
            margin-bottom: 2rem;
            font-size: 1.6rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        input, textarea {
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        button {
            background: var(--navy);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s;
        }

        button:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
        }

        .form-message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
            font-size: 0.95rem;
        }

        .form-message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
        }

        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: white;
            text-align: center;
            padding: 2rem 4rem;
        }

        footer p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                width: 30%;
                padding: 2rem 1.5rem;
            }

            .content-area {
                width: 70%;
                margin-left: 30%;
            }

            section {
                padding: 4rem 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #mainContent.visible {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 2rem;
            }

            .content-area {
                width: 100%;
                margin-left: 0;
                height: auto;
            }

            section {
                padding: 3rem 2rem;
                min-height: auto;
            }

            h2 {
                font-size: 2rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .disclaimer-box {
                margin: 10px;
            }

            .disclaimer-header h2 {
                font-size: 1.4rem;
            }

            .disclaimer-actions {
                flex-direction: column;
            }
        }

        /* Scrollbar Styling */
        .content-area::-webkit-scrollbar {
            width: 10px;
        }

        .content-area::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .content-area::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 5px;
        }

        .content-area::-webkit-scrollbar-thumb:hover {
            background: var(--navy);
        }
        .about-split {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-left {
  flex: 3;
}

.about-right {
  flex: 1;
  background: #f9f9f9;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.about-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

#blogFeed {
  list-style: none;
  padding: 0;
}

#blogFeed li {
  margin-bottom: 1rem;
}

#blogFeed a {
  text-decoration: none;
  color: var(--light-blue);
  font-weight: 500;
  transition: color 0.3s;
}

#blogFeed a:hover {
  color: var(--navy);
}