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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #6EC6FF 0%, #EAF7FF 100%);
    color: #2C3E50;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #FF7043, #FFCA28);
    color: white;
    overflow: hidden;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 22px;
    opacity: 0.95;
}

/* Floating Bubbles */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    animation: float 8s infinite ease-in-out;
}

.b1 {
    width: 60px;
    height: 60px;
    left: 10%;
    top: 20%;
}

.b2 {
    width: 90px;
    height: 90px;
    right: 15%;
    top: 15%;
    animation-delay: 2s;
}

.b3 {
    width: 45px;
    height: 45px;
    left: 25%;
    bottom: 10%;
    animation-delay: 4s;
}

.b4 {
    width: 70px;
    height: 70px;
    right: 30%;
    bottom: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Main Container */
.container {
    max-width: 950px;
    margin: -40px auto 40px;
    padding: 0 20px;
}

/* Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.card h2 {
    color: #FF7043;
    margin-bottom: 18px;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card p {
    margin-bottom: 14px;
    color: #455A64;
}

.card ul {
    margin: 12px 0 12px 24px;
}

.card li {
    margin-bottom: 10px;
}

/* Effective Date */
.effective {
    color: #607D8B;
    font-size: 15px;
}

/* Permission Table */
.permission-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 14px;
}

.permission-table th {
    background: #42A5F5;
    color: white;
    padding: 14px;
    text-align: left;
}

.permission-table td {
    padding: 14px;
    border-bottom: 1px solid #E0E0E0;
}

.permission-table tr:nth-child(even) {
    background: #F8FBFF;
}

/* Email */
.email {
    font-size: 18px;
    font-weight: bold;
    color: #1976D2;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #546E7A;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .card {
        padding: 24px;
    }

    .card h2 {
        font-size: 24px;
    }

    .permission-table th,
    .permission-table td {
        font-size: 14px;
        padding: 10px;
    }
}
