 .root {
    --primary-purple: #6f2c91;
    --dark-purple: #4e1d66;
    --light-purple: #f4eef9;
    --accent-yellow: #ffc107;
    --secure-green: #28a745;
}

.body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fcfaff;
    color: #444;
}

/* Hero Section */
.ssl-hero {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 92, .95) 0%,
            rgba(0, 0, 70, .90) 50%,
            rgba(26, 115, 232, .75) 100%),
        url('https://images.unsplash.com/photo-1563986768609-322da13575f3?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.trust-bar {
    border: 1px solid rgba(26, 115, 232, .15);
}

/* Trust Indicators */
.trust-bar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

/* SSL Feature Cards */
.ssl-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.4s;
    text-align: center;
}

.ssl-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(111, 44, 145, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #EEF4FF;
    color: #00005C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

/* Brand Section */
.brand-logo-strip {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
    max-width: 150px;
}

.brand-logo-strip:hover {
    opacity: 1;
    filter: grayscale(0);
}

.btn-ssl {
    background: #1A73E8;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all .3s ease;
}

.btn-ssl:hover {
    background: linear-gradient(135deg,
            #1A73E8,
            #00B4FF,
            #4F46E5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, .35);
}
:root {
    --primary-purple: #6f2c91;
    --dark-purple: #4e1d66;
    --light-purple: #f4eef9;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fcfaff;
    color: #444;
}

/* Hero Section */
.mail-hero {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 92, 0.92) 0%,
            rgba(0, 0, 60, 0.85) 50%,
            rgba(26, 115, 232, 0.75) 100%),
        url('https://images.unsplash.com/photo-1557200134-90327ee9fafa?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

/* Package Card */
.mail-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, .2);
    box-shadow: 0 20px 40px rgba(111, 44, 145, 0.1);
    transition: 0.4s;
    max-width: 450px;
    margin: -80px auto 50px;
}

.mail-header {
    background: linear-gradient(135deg,
            #00005C,
            #1A73E8);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.mail-features {
    padding: 30px;
    list-style: none;
    margin: 0;
}

.mail-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f4eef9;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.mail-features li span {
    color: var(--primary-purple);
}

/* Info Boxes */
.info-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-purple);
    color: var(--primary-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-purple);
    color: var(--primary-purple);
}
