:root {
    --primary-color: #F26522; /* Orange from RAPID logo */
    --secondary-color: #58595B; /* Gray from RAPID logo */
    --dark-gray: #333333; /* Darker gray for the banner and footer */
    --text-color: #333;
    --white: #ffffff;
    --light-gray: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.login-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.login-button:hover {
    background-color: #d54d0d;
}

#showcase {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 4rem 0 2rem;
    margin-top: 60px;
}

.showcase-logo {
    max-width: 300px;
    margin-bottom: 1rem;
}

#showcase p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

#about {
    padding: 2rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#powered-by {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
}

#powered-by h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

#powered-by img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

#powered-by img:hover {
    transform: scale(1.05);
}

footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    #showcase h1 {
        font-size: 2.5rem;
    }
}
