* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f5f3ff;
    color: #1f2937;
    font-family: "Segoe UI", Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

#main-content {
    min-height: 100vh;
    padding: 36px 20px;
}

.package1-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.package1-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.package1-card {
    background: #ffffff;
    border: 1px solid #e9ddff;
    border-radius: 24px;
    padding: 30px 22px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(91, 33, 182, 0.08);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.package1-card:hover {
    box-shadow: 0 18px 36px rgba(91, 33, 182, 0.12);
    border-color: #ccb7ff;
    transform: translateY(-2px);
}

.package1-card-overview,
.package1-card-half {
    min-height: 220px;
}

.package1-card-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package1-icon-badge {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f3e8ff 0%, #ede9fe 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.package1-icon-svg {
    width: 44px;
    height: 44px;
    display: block;
}

.package1-card-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.package1-card-text h3 {
    font-size: 1.28rem;
    font-weight: 700;
    color: #4c1d95;
    line-height: 1.3;
}