* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial, sans-serif';
}

body {
    background: #f4f4f4;
    color: #333;
}

#initial-header {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
}

.initial-logo #logo {
    width: 200px;
    height: auto;
}

#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: auto;
}

#logo-small {
    width: 80px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Other sections remain unchanged */
#hero {
    background: #f4f4f4; /* Optional: background color to enhance visibility */
    padding: 2rem 1rem;
    text-align: center;
}
#hero h2 {
    margin-top: 50px; /* Adjust margin to give space below the main header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}


.logo-column {
    flex: 1;
    text-align: center;
}

.logo-column img {
    max-width: 100%;
    height: auto;
}

.text-column {
    flex: 2;
    text-align: left;
}

.text-column h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-column p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #ff7f50;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #ff6347;
}

#features {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: inline-block;
    width: 30%;
    margin: 1%;
    padding: 1rem;
    background: #f4f4f4;
    border-radius: 10px;
    opacity: 0;
}

#how-it-works, #get-started {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

#how-it-works h2, #get-started h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    animation: fadeIn 1s ease-in-out;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.feature.animate-feature {
    animation: bounceIn 1s ease-in-out forwards;
}


#get-started {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

#get-started h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#get-started p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem; /* Adds space between text and button */
}

.cta-button {
    background: #ff7f50;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 1rem; /* Adds additional space above the button */
}

.cta-button:hover {
    background: #ff6347;
}


#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff7f50;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    display: none; /* Hidden by default */
    z-index: 1000;
    transition: background 0.3s ease;
}

#back-to-top:hover {
    background-color: #ff6347;
}

.img-features{
    width: 70%;
    height:70%;
}