

        .container {
            max-width: 800px;
            margin: auto;
        }



        .price-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .price-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-size: 1.1rem;
        }

        .price-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .price-table tr:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .price-tag {
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-button {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 30px auto;
            background: #25d366; /* WhatsApp Green */
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .note {
            background: rgba(255, 46, 99, 0.1);
            border-left: 5px solid var(--primary);
            padding: 15px;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 600px) {
            h1 { font-size: 1.5rem; }
            .price-table th, .price-table td { padding: 10px; font-size: 0.9rem; }
        }
