:root {
    --purple: #6a0dad;
    --blue: #0056b3;
    --bg-light: #f3e8ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background-color: #ffffff;
    /* We removed 'overflow: hidden' so it can now scroll! */
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Upper Section */
.main-content {
    padding-top: 40px;
    padding-bottom: 150px; /* Space for cards to overlap */
}

.logo {
    height: 80px;
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.main-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #222;
}

.purple-text {
    color: var(--purple);
}

.divider {
    color: var(--purple);
    font-weight: bold;
    border-bottom: 2px solid #efefef;
    display: inline-block;
    padding-bottom: 5px;
    margin: 20px 0;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-box {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 25px;
}

.highlight-box i {
    color: var(--purple);
    font-size: 1.2rem;
}

.highlight-box p {
    color: var(--purple);
    font-size: 0.9rem;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
}

/* Lower Section with Curve */
.footer-section {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    /* This creates the wave effect */
    border-radius: 100% 100% 0 0 / 15% 15% 0 0;
}

.contact-grid {
    display: flex;
    gap: 20px;
    margin-top: -200px; /* Moves cards UP into the white section */
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    flex: 1;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-wrap {
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--purple);
    font-size: 1.3rem;
}

.contact-card h3 {
    color: var(--purple);
    margin-bottom: 10px;
}

.bottom-footer {
    text-align: center;
    color: white;
}

.copy {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .logo { margin: 0 auto 30px; display: block; }
    .highlight-box { margin: 0 auto 25px; }
    .contact-grid { flex-direction: column; margin-top: 50px; }
    .footer-section { border-radius: 0; margin-top: 50px; }
    .main-title { font-size: 3rem; }
}