/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://celer.network/static/home-hero-mobile-bg-6204f577640a4144ee7a16466367ec81.svg'); /* Replace with your background image URL */
    background-size: contain;
    background-position: center;
    height: 100vh;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3rem;
    max-width: 800px;
}
.hero p {
    font-size: 1.25rem;
    margin-top: 20px;
    max-width: 600px;
}

/* Section Style */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
section p {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}
.text {
    text-align: left;
}

/* Key Features Section */
.key-features {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 40px;
    margin-top: 40px;
}
.key-features h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}
.key-features ul {
    list-style: none;
    padding-left: 0;
}
.key-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-content {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .key-features {
        padding: 20px;
    }
}


/* Footer Section Styling */
footer {
    background-color: #333;  /* Dark background for the footer */
    color: white;            /* White text color */
    text-align: center;      /* Center the text */
    padding: 40px 20px;      /* Add padding for spacing */
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer Text Styling */
footer p {
    margin: 0;               /* Remove default margin */
    font-size: 1rem;         /* Set font size */
    font-weight: 400;        /* Make the text weight normal */
}

/* Footer Links Styling (if any) */
footer a {
    color: white;            /* White color for links */
    text-decoration: none;   /* Remove underline */
    margin: 0 10px;          /* Add space between links */
    font-size: 1.1rem;       /* Slightly larger font size for links */
}

footer a:hover {
    text-decoration: underline; /* Underline links on hover */
    color: #00bcd4;             /* Change link color on hover */
}

/* Responsive Footer Styling */
@media (max-width: 768px) {
    footer {
        padding: 20px 10px;  /* Reduce padding on smaller screens */
    }

    footer p {
        font-size: 0.9rem;    /* Slightly smaller text for mobile */
    }

    footer a {
        font-size: 1rem;      /* Adjust link font size for smaller screens */
    }
}

/* Global Styles */
