/* =========================================
           THEME VARIABLES (Basic Light)
           ========================================= */
        :root {
            --bg-color: #ffffff;
            --text-primary: #000000;
            --text-secondary: #666666;
            --border-color: #e5e5e5;
            --btn-color: #0071e3; /* Apple-esque blue */
            --btn-text-color: #ffffff;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --max-width: 800px;
        }

        /* =========================================
           BASE STYLES
           ========================================= */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 120px 20px 0; /* Top padding accommodates fixed header */
            flex: 1; /* Pushes footer to the bottom */
        }

        section {
            margin-bottom: 5rem; /* Generous negative space */
        }
		
		section.cta {
			text-align:center;
		}
		

        /* =========================================
           FIXED HEADER
           ========================================= */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem 20px;
        }

        .header-left h1 {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .header-left p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* =========================================
           BUTTONS
           ========================================= */
        button, a.btn-small, a.btn-large {
            cursor: pointer;
            border: none;
            border-radius: 999px; /* Pill shape */
            font-family: inherit;
            font-weight: 500;
            transition: opacity 0.2s ease;
        }

        button:hover {
            opacity: 0.8;
        }

        .btn-small, a.btn-small {
            background-color: var(--btn-color);
            color: var(--btn-text-color);
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
			text-decoration:none;
        }

        .btn-large, a.btn-large {
            background-color: var(--btn-color);
            color: var(--btn-text-color);
            padding: 1rem 3rem;
            font-size: 1.1rem;
            display: inline-block;
            margin: 0 auto; /* Centers the button */
			text-decoration:none;
			width:auto;
        }

        /* =========================================
           DESCRIPTION
           ========================================= */
        .description p {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: -0.5px;
            text-align: center;
            color: var(--text-primary);
        }

        /* =========================================
           KEY FEATURES
           ========================================= */
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem 2.5rem;
            margin-top: -2rem;
        }

        .feature-item {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-primary);
            display: flex;
            align-items: center;
        }

        .feature-item::before {
            content: '•';
            color: var(--btn-color);
            font-size: 1.5rem;
            margin-right: 0.6rem;
            line-height: 1;
        }

        /* =========================================
           SLIDESHOW GALLERY
           ========================================= */
        .gallery {
            position: relative;
            width: 100%;
            height: 450px; /* Constrain the container height here on desktop */
            overflow: hidden;
            border-radius: 12px;
            background-color: #f5f5f5;
        }

        .slides-container {
            display: flex;
            height: 100%; /* Force container to match gallery height */
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide-item {
            min-width: 100%;
            height: 100%; /* Force slide item to match container height */
            position: relative;
        }

        .slide {
            width: 100%;
            height: 100%; /* Force image to fill the exact height bounds */
            object-fit: cover;
            display: block;
        }

        .slide-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: rgba(0, 0, 0, 0.65);
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            letter-spacing: -0.2px;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 10;
        }

        .prev-btn { left: 15px; }
        .next-btn { right: 15px; }

        /* =========================================
           EXPANDABLE SECTIONS (ACCORDION)
           ========================================= */
        details {
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
        }

        details:first-of-type {
            border-top: 1px solid var(--border-color);
        }

        summary {
            font-size: 1.2rem;
            font-weight: 500;
            cursor: pointer;
            list-style: none; /* Removes default arrow */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker {
            display: none; /* Removes arrow in Safari */
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--text-secondary);
        }

        details[open] summary::after {
            content: '−';
        }

        .details-content {
            padding-top: 1rem;
            color: var(--text-secondary);
        }

        .details-content p {
            margin-bottom: 1rem;
        }

        .details-content p:last-child {
            margin-bottom: 0;
        }

        .details-content ul {
            list-style-type: none;
            padding-left: 0;
        }

        .details-content li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .details-content li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--text-primary);
            font-weight: bold;
        }
        
        .review-block {
            padding-left: 1.5rem;
            border-left: 2px solid var(--border-color);
            margin-bottom: 1.5rem;
        }
        
        .review-block:last-child {
            margin-bottom: 0;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact {
            text-align: center;
        }

        .contact h2 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .contact p {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            margin-top: 6rem;
            padding: 2.5rem 20px;
            border-top: 1px solid var(--border-color);
            background-color: var(--bg-color);
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-content a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s ease;
        }

        .footer-content a:hover {
            opacity: 0.7;
        }

        /* =========================================
           MOBILE RESPONSIVENESS
           ========================================= */
        @media (max-width: 768px) {
            .gallery {
                height: auto; /* Remove the fixed 450px height */
                aspect-ratio: 3 / 2; /* Force the container itself into the correct ratio */
            }
            
            /* Reduced label size and padding for mobile */
            .slide-label {
                font-size: 0.75rem;
                padding: 4px 10px;
                bottom: 12px;
                left: 12px;
            }
            
            .description p {
                font-size: 1.25rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }