/* Custom Gradient Background */
body {
    background: linear-gradient(135deg, rgba(2, 0, 36, 1) 0%, rgba(38, 128, 179, 1) 50%, rgba(49, 71, 168, 1) 100%);
    color: white;
    font-family: "Trebuchet MS", Tahoma, sans-serif;
    overflow: hidden;
}

/* Centered Content */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Title Styling */
.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Button Styling */
.btn-custom {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
    background-color: #218838;
    transform: scale(1.05);
    color: white;
}

/* Custom SVG Icon */
.btn-custom svg {
    margin-right: 0.5rem;
}