/* General Body Styling */
body {
    font-family: 'Prompt', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #ffffff;
    line-height: 1.6;

    background-image: url('5.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Header Styling */
header {
    color: white;
    padding: 80px 20px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 60px;
    margin: 0;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 22px;
    margin-top: 10px;
    font-style: italic;
    letter-spacing: 1px;
}

/* CTA Button Styling */
.cta-btn {
    background-color: #ff7043;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #ff5722;
    color: white;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Login Button Styling */
.login-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff7043;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.login-btn:hover {
    background-color: #e64a19;
}

/* Section Styling */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    color: #ffffff;
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Contact Info Styling */
.contact-info {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-top: 10px;
}
