﻿/* Default Page Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

header {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Welcome Container */
.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjusted height to remove unnecessary space */
    text-align: center;
    padding: 0;
    background-color: #fff;
}

.welcome-content {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 0; /* Remove padding from top */
}

    .welcome-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

        .welcome-content h1 .highlight {
            color: #ffcb05;
            font-weight: bold;
        }

    .welcome-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    color: #fff;
    background-color: #ffcb05;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

    .cta-button:hover {
        background-color: #e0a700;
        transform: scale(1.05);
    }

    .cta-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.5);
    }
