* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    line-height: 1.6;
}
.home-content {
    flex: 1;
    display: grid;
    width: 100%;
}
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #141414;
    color: #ffffff;
    clip-path: ellipse(80% 100% at 50% 0%);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.15rem;
    color: #e9eef6;
}
.home-button {
    display: inline-block;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
    border: 2px solid #00c6ff;
    color: #00c6ff;
    cursor: pointer;
    line-height: 1;
    padding: 1.2em 1.8em;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
}
.home-button:hover {
    transform: scale(1.05);
}
.features {
    padding: 40px 20px 80px 20px;
    background-color: #1e1e1e;
    text-align: center;
}
.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.features .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.features .feature {
    max-width: 350px;
    background: #2c2c2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.features .feature:hover {
    transform: translateY(-10px);
}
.features .feature svg {
    margin-bottom: 10px;
}
.features .feature h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.features .feature p {
    font-size: 1rem;
    color: #c8c8c8;
}
.features .feature a {
    color: #ffffff;
}
.last-section {
    text-align: center;
    padding: 25px 20px;
    background-color: #141414;
    color: #ffffff;
    clip-path: ellipse(80% 100% at 50% 100%);
}
.last-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.last-section a {
    padding: 1.2em;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.45rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .hero {
        clip-path: ellipse(160% 75% at center 20%);
    }
    .features {
        padding: 0 20px 40px 20px
    }
    .features h2 {
        font-size: 2rem;
    }
    .features .feature-list {
        flex-direction: column;
        align-items: center;
    }
    .last-section {
        clip-path: ellipse(160% 75% at center 80%);
    }
    .home-container-top {
        margin-top: 50px;
    }
    .footer-container {
        margin-top: unset !important;
    }
}

.navbar-container {
    background-color: #141414 !important;
}
footer {
    border-top: unset !important;
    padding-top: unset !important;
}
.footer-divider {
    margin: 35px auto !important;
}
.footer-bottom p {
    margin: 10px auto !important;
}