/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    color: #ffffff;
}

.hero {
    background: linear-gradient(rgba(32, 60, 103, 0.85), rgba(81, 92, 108, 0.85)),
        url('https://www.practive.in/wp-content/uploads/2023/11/ca-new-logo.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 80px;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f8fafc;
    text-transform: uppercase;
}


.content {
    max-width: 800px;
    margin: auto 0;
}

h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.subheading {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.5;
}

.description {
    font-size: 1rem;
    color: #afc1d8;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.notice-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #e2b714;
    padding: 12px 20px;
    margin-top: 100px;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #e2e8f0;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

footer {
    font-size: 0.85rem;
    color: #afc1d8;
    text-align: center;
    padding-bottom: 10px;
}


@media (max-width: 768px) {
    .hero {
        padding: 20px 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1.1rem;
    }
}