body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    text-align: center;
    color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 32px;
    color: #4caf50;
    font-weight: bold;
}

h2 {
    font-size: 26px;
    color: #ffcc00;
    font-weight: bold;
    margin-top: 20px;
}

h3 {
    font-size: 22px;
    color: #66bb6a;
    font-weight: bold;
    margin-top: 15px;
}

p {
    font-size: 16px;
    color: #cccccc;
    margin: 15px 0;
    line-height: 1.6;
}

.highlight {
    color: #ffcc00;
    font-weight: bold;
}

a {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #66bb6a;
    text-decoration: underline;
}

.back-home {
    margin-top: 30px;
}

.back-home-text {
    color: #ffcc00;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-home-text:hover {
    color: #aca991;
    transform: scale(1.05);
    opacity: 0.85;
}

/* Remove underline for both Gmail and Back to Home */
a, .back-home-text {
    text-decoration: none;
}

a:hover, .back-home-text:hover {
    text-decoration: none;  /* Ensure no underline on hover */
}
