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

        body {
            font-family: 'Arial', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .top-header {
            background: linear-gradient(135deg, #ff8a5c, #ff6b4a);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .navbar-default {
    background-color: #f8f8f8;
    border-color: transparent!important;
}
        .main-nav {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .main-nav .navbar-brand {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b4a !important;
        }

        .main-nav .navbar-nav > li > a {
            color: #333!important;
            padding: 15px 20px;
            transition: color 0.3s;
        }

        .main-nav .navbar-nav > li > a:hover {
            color: #ff6b4a !important;
            background: none!important;
        }

        .btn-create {
            background: linear-gradient(135deg, #ff8a5c, #ff6b4a);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-create:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,107,74,0.4);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #fff5f0, #ffe8dc);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }

        .book-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .book-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .book-item:hover {
            transform: translateY(-10px) rotate(2deg);
        }

        .book-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        /* .book-item.placeholder {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .book-item.placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        } */

        /* .book-placeholder-content {
            text-align: center;
            color: white;
            padding: 20px;
            z-index: 1;
        }

        .book-placeholder-content i {
            font-size: 60px;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .book-placeholder-content p {
            margin: 0;
            font-size: 14px;
            font-weight: bold;
        } */

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .feature-box {
            text-align: center;
            padding: 30px;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: scale(1.05);
        }

        .feature-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: #fff5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .feature-box h3 {
            color: #ff6b4a;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .feature-box p {
            color: #666;
            font-size: 15px;
        }

        /* Steps Section */
        .steps-section {
            background: linear-gradient(135deg, #fff5f0, #ffe8dc);
            padding: 80px 0;
        }

        .steps-section h2 {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .step-item {
            text-align: center;
            padding: 20px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .step-number img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .step-item h4 {
            color: #333;
            margin-bottom: 10px;
            font-weight: bold;
        }

        /* Examples Section */
        .examples-section {
            padding: 80px 0;
            background: white;
        }

        .examples-section h2 {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .example-card {
            margin-bottom: 80px;
        }

        .example-images {
            display: flex;
            gap: 15px;
        }

        .example-main-img {
            flex: 2;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .example-main-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .example-main-img.placeholder {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .example-main-img.placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        .example-placeholder-icon {
            font-size: 100px;
            color: rgba(255,255,255,0.8);
            z-index: 1;
        }

        .example-thumbs {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .example-thumb {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .example-thumb img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .example-thumb.placeholder {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            position: relative;
            overflow: hidden;
        }

        .example-thumb.placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        .thumb-placeholder-icon {
            font-size: 40px;
            color: rgba(255,255,255,0.8);
            z-index: 1;
        }

        .example-details {
            background: #fff5f0;
            padding: 30px;
            border-radius: 15px;
        }

        .example-details h3 {
            color: #ff6b4a;
            margin-bottom: 20px;
        }

        .example-details ul {
            list-style: none;
            padding: 0;
        }

        .example-details ul li {
            padding: 8px 0;
            color: #666;
        }

        .example-details ul li:before {
            content: "• ";
            color: #ff6b4a;
            font-weight: bold;
            margin-right: 8px;
        }

        /* Occasions Section */
        .occasions-section {
            background: linear-gradient(135deg, #fff5f0, #ffe8dc);
            padding: 80px 0;
        }

        .occasions-section h2 {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

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

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

        .occasion-card:hover {
            transform: translateY(-10px);
        }

        .occasion-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .occasion-card.placeholder-card img {
            display: none;
        }

        .occasion-card.placeholder-card {
            position: relative;
            overflow: hidden;
        }

        .occasion-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .occasion-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        .occasion-placeholder-icon {
            font-size: 80px;
            margin-bottom: 10px;
            z-index: 1;
        }

        .occasion-content {
            padding: 20px;
            background: #fff5f0;
        }

        .occasion-content h4 {
            color: #333;
            margin-bottom: 10px;
        }

        .occasion-content p {
            color: #666;
            font-size: 14px;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: white;
        }

        .reviews-section h2 {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .review-card {
            background: #fff5f0;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .review-card:hover {
            transform: scale(1.02);
        }

        .review-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
        }

        .review-card.placeholder-review img {
            display: none;
        }

        .review-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .review-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        .review-placeholder-icon {
            font-size: 70px;
            color: rgba(255,255,255,0.8);
            z-index: 1;
        }

        .review-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

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

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 30px;
            font-weight: bold;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .cta-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .cta-feature-box {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: rgba(255,255,255,0.2);
        }

        .cta-feature-icon {
            font-size: 60px;
            margin-bottom: 15px;
            display: block;
        }

        .cta-feature-box h4 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .cta-feature-box p {
            font-size: 14px;
            opacity: 0.9;
            margin: 0;
        }

        .cta-button-container {
            margin-top: 50px;
        }

        .cta-section .btn-cta {
            background: white;
            color: #667eea;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 20px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            z-index: 2;
        }

        .cta-section .btn-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .cta-trust-text {
            margin-top: 25px;
            font-size: 16px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

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

        .faq-section h2 {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .faq-item {
            margin-bottom: 20px;
        }

        .faq-item h4 {
            color: #ff6b4a;
            margin-bottom: 10px;
        }

        .faq-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            color: #ff6b4a;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 32px;
            }

            .book-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .example-images {
                flex-direction: column;
            }

            .example-thumbs {
                flex-direction: row;
            }
        }

        @media (max-width: 480px) {
            .book-gallery {
                grid-template-columns: 1fr;
            }
        }
    