* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #2b1f3d;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #3f1959;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #3f1959;
    font-weight: 600;
    font-size: 13px;
}

.btn-cta-small {
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    background: #f3f0f7;
    padding: 50px 5%;
    border-bottom: 1px solid #e2d9ec;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-left h1 {
    font-size: 44px;
    line-height: 1.1;
    color: #000;
    font-weight: 800;
}

.hero-left p {
    font-size: 16px;
    color: #555;
    margin: 15px 0 10px 0;
}

.privacy-badge {
    background: #e8d7f2;
    color: #5d2586;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-pink-pill {
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.hero-middle {
    text-align: center;
    background: #ffffff90;
    padding: 20px 30px;
    border-radius: 16px;
}

.hero-middle h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}

.steps-row {
    display: flex;
    gap: 20px;
}

.step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.step-box span {
    font-size: 11px;
    color: #333;
    font-weight: 500;
}

/* Help Cards Section */
.help-section {
    padding: 40px 5%;
    text-align: center;
}

.help-section h2 {
    font-size: 24px;
    color: #2c1a4d;
    margin-bottom: 30px;
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    border-radius: 16px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Individual Card Colors matching CloudTailor aesthetics */
.card-yellow { background-color: #f7d560; }
.card-pink { background-color: #c93b54; color: #fff; }
.card-green { background-color: #72a159; color: #fff; }

.card-info h3 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.card-info ul {
    list-style: none;
    font-size: 13px;
    margin-bottom: 15px;
}

.card-info li {
    margin-bottom: 3px;
}

.price-pill {
    background: #e91e63;
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.card-pink .price-pill, .card-green .price-pill {
    background: #ffffff;
    color: #000;
}

.card-image-placeholder {
    font-size: 60px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    position: relative;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.full-width { width: 100%; margin-top: 15px; }

.close-btn {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 24px;
    cursor: pointer;
}