:root {
    --primary-color: #8a2be2;
    --accent-color: #ee5a24;
    --bg-white: #ffffff;
    --bg-light: #f0f0f0;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gradient-main: linear-gradient(135deg, #8a2be2, #ee5a24);
    --shadow-soft: 0 10px 30px rgba(138, 43, 226, 0.1);
    --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Layout Utilities */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* UI Elements */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-main);
    color: var(--text-light);
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.6);
}

.card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.05);
}

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

/* Header/Hero */
header {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(238, 90, 36, 0.05), transparent 40%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.highlight-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Offerings/Lifestyle Section */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fdfbfd 0%, #fff5f2 100%);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .card {
        padding: 2rem 1.5rem;
    }
}