
        /* Base Styles */
        :root {
            --highlight: #1FBDC6;
            --bg-light: #F8F9FA;
            --text-primary: #111827;
            --text-secondary: #4B5563;
            --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: var(--highlight);
            margin-bottom: 16px;
            display: block;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .highlight {
            color: var(--highlight);
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Add-ons Section */
        .addons {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }

        .addon-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }

            .addon-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--card-shadow);
            }

        .addon-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--highlight);
            color: white;
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
        }

        .addon-content {
            padding: 32px;
        }

        .addon-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
        }

            .addon-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 16px;
            }

        .addon-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .addon-card p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .addon-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .duration {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .addon-button {
            width: 100%;
            padding: 12px 24px;
            background: var(--highlight);
            color: white;
            border: none;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .addon-button:hover {
                background: #E5331E;
            }

        .view-all {
            text-align: center;
        }

        .view-all-button {
            padding: 16px 32px;
            background: transparent;
            border: 2px solid var(--highlight);
            color: var(--highlight);
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .view-all-button:hover {
                background: var(--highlight);
                color: white;
            }

        /* Shots Section */
        .shots {
            padding: 100px 0;
            background: white;
        }

        .shots-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .shot-card {
            display: flex;
            background: var(--bg-light);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

            .shot-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--card-shadow);
            }

        .shot-image {
            width: 200px;
            flex-shrink: 0;
        }

            .shot-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .shot-content {
            padding: 32px;
            flex-grow: 1;
        }

        .shot-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .shot-card p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .shot-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
        }

            .shot-benefits li {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 12px;
                color: var(--text-secondary);
            }

                .shot-benefits li::before {
                    content: '✓';
                    color: var(--highlight);
                    font-weight: bold;
                }

        .shot-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .shot-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .shot-button {
            padding: 12px 24px;
            background: var(--highlight);
            color: white;
            border: none;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .shot-button:hover {
                background: #E5331E;
            }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .addons-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .shots-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 36px;
            }

            .addons-grid {
                grid-template-columns: 1fr;
            }

            .shot-card {
                flex-direction: column;
            }

            .shot-image {
                width: 100%;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .addons, .quick-shots {
                padding: 50px 0;
            }

            .section-header h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .section-header p {
                font-size: 14px;
            }

            .addons-grid, .shots-grid {
                gap: 20px;
            }

            .addon-card, .shot-card {
                border-radius: 14px;
            }

            .addon-content, .shot-content {
                padding: 18px;
            }

            .addon-content h3, .shot-content h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .addon-price, .shot-price {
                font-size: 20px;
            }

            .addon-description, .shot-benefits {
                font-size: 13px;
            }

            .addon-button, .shot-button {
                padding: 11px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            .addons, .quick-shots {
                padding: 40px 0;
            }

            .section-header h2 {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .section-header p {
                font-size: 13px;
            }

            .addons-grid, .shots-grid {
                gap: 16px;
            }

            .addon-card, .shot-card {
                border-radius: 12px;
            }

            .addon-icon, .shot-icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }

            .addon-content, .shot-content {
                padding: 16px;
            }

            .addon-content h3, .shot-content h3 {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .addon-price, .shot-price {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .addon-description, .shot-benefits {
                font-size: 12px;
                margin-bottom: 14px;
            }

            .addon-button, .shot-button {
                padding: 10px 18px;
                font-size: 13px;
            }

            .benefit-item {
                gap: 8px;
                font-size: 12px;
            }

            .benefit-item i {
                font-size: 11px;
            }
        }
