:root {
    --primary-color: #1f0b2c;
    --secondary-color: linear-gradient(135deg, #1f0b2c 0%, #62228b 50%, #b6215f79 100%);
    --accent-color: #62228b;
    --gradient-bg: linear-gradient(135deg, #1f0b2c 0%, #62228b 50%, #81284d79 100%);
    --text-color: #ffffff;
    --highlight-color: linear-gradient(135deg, #1f0b2c 0%, #62228b 50%, #b6215f79 100%);
    --card-bg: rgba(128, 22, 177, 0.541);
    --border-color: rgba(255, 255, 255, 0.2);
    --glass-effect: rgba(255, 255, 255, 0.05);
    --button-gradient: linear-gradient(135deg, 
        #ff80b5 0%,   /* Soft Pink */
        #ffb677 25%,  /* Light Orange */
        #8c52ff 60%,  /* Violet */
        #4a90e2 100%  /* Light Blue */
    );
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(245, 245, 245, 0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff80b5;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Hero Section (About Us) */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    margin-bottom: 2rem;
    object-fit: cover;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    background: var(--glass-effect);
    color: var(--text-color);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Features Section (About Us) */
.features {
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    background: var(--glass-effect);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #ff80b5;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #ddd;
}

/* Call to Action (About Us) */
.cta {
    text-align: center;
    padding: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    background: var(--button-gradient);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 128, 181, 0.5);
}

/* Policy Pages (Privacy, Terms, Refund) */
.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.policy-section ul li:before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #ff80b5;
}

.policy-section p {
    margin-bottom: 0.5rem;
}

/* Buttons (General) */
button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    background: var(--button-gradient);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 128, 181, 0.5);
}

footer {
    text-align: center;
    padding: 1rem;
    background: var(--primary-color);
    position: fixed;
    bottom: 0;
    width: 100%;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 1.5rem;
    }

    nav a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 0.9rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.85rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section ul li {
        font-size: 0.85rem;
    }
}


/* Existing CSS remains the same, add these new styles at the end */

/* Contact Details Section */
.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section iframe {
    width: 100%;
    border-radius: 15px;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    text-align: left;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff80b5;
}

.faq-item p {
    font-size: 1rem;
    color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-details p {
        font-size: 1rem;
    }

    .map-section iframe {
        height: 250px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-details p {
        font-size: 0.9rem;
    }

    .map-section iframe {
        height: 200px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }
}