:root {
    --primary-green: #1a8f42; /* Premium Ayurvedic green matching logo elements */
    --primary-blue: #186bb4;  /* Trust-evoking blue matching logo text */
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-color: #f3f8f5;      /* Very soft, clean green-tinted background */
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 40px 0;
}

/* Background animated elements for a dynamic, modern feel */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--primary-green);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--primary-blue);
    opacity: 0.15;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    padding: 20px;
}

/* Glassmorphism Card for Premium Look */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease;
}

.logo-container {
    margin-bottom: 36px;
}

.logo {
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    margin: 0 auto 28px auto;
    border-radius: 2px;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(26, 143, 66, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(26, 143, 66, 0.1);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hover effect on contact card */
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(26, 143, 66, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@media (max-width: 540px) {
    .card {
        padding: 40px 24px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 130px;
    }
}
