body {
            font-family: 'Inter', sans-serif;
            color: #2B2B2B;
            background-color: #F6F2EA;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }

        /* Navigation Styles */
        nav {
            background: rgba(74, 59, 92, 0.95);
            backdrop-filter: blur(10px);
        }

        nav.scrolled {
            background: rgba(74, 59, 92, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #C6A75E;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #C6A75E;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Button Styles */
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.08em;
            transition: all 0.3s ease;
            display: inline-block;
            font-weight: 500;
        }

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

        .btn-primary:hover {
            background-color: #a05d68;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(183, 110, 121, 0.3);
        }

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

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

        /* Hamburger Menu */
        /* .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: #1F2A36;
            padding: 6rem 2rem 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: block;
            right: 0;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        } */

        /* Book Cover Styles */
        .book-cover {
            aspect-ratio: 3/4;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(31, 42, 54, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .book-cover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(31, 42, 54, 0.25);
        }

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

        .hidden-testimonial {
            display: none !important;
        }

        .hidden-testimonial.show {
            display: flex !important;
            animation: fadeIn 0.5s ease;
        }

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

        /* Form Styles */
        input[type="text"],
        input[type="email"] {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(31, 42, 54, 0.2);
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        input[type="text"]:focus,
        input[type="email"]:focus {
            outline: none;
            border-color: #B76E79;
            box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
        }

        /* Fade-in Animation */
        .fade-in {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

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

        /* @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }
        } */