* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Inter', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #0a0a23;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 75px;
    background-color: #17172b;
    display: flex;
    align-items: center;
    padding: 0 150px;
}

.header-logo {
    height: 50px;
}

.main-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 3rem;
    line-height: 3rem;
    margin: 0;
}

.content-left {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.content-left h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.image-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 80%;
    height: auto;
}

.cones-overlay {
    position: absolute;
    left: -20%;
    bottom: -13%;
    width: 60%;
    height: auto;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 150px;
    background-color: #17172b;
    position: relative;
}

.footer-logo {
    height: 50px;
    margin-right: 20px;
}

.footer-url {
    flex-grow: 1;
    text-align: center;
    color: #df4e38;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-url:hover {
    text-decoration: underline;
}

.gradient-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #df4e38, #7b68e7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .main-container {
        flex-direction: column;
        padding: 20px 15px 10px 15px;
        margin: 0 auto;
    }

    .content-left {
        padding-right: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .content-left h2 {
        font-size: 1.5rem;
    }

    .image-right {
        justify-content: center;
    }

    .main-image {
        max-width: 80%;
    }

    .cones-overlay {
        width: 50%;
        left: -10%;
        bottom: -7%;
    }

    .footer {
        padding: 20px 20px;
        flex-direction: row;
        align-items: center;
    }

    .footer-logo {
        height: 30px;
    }

    .footer-url {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .content-left h2 {
        font-size: 1.2rem;
    }

    .header-logo {
        height: 40px;
    }

    .footer-logo {
        height: 25px;
    }

    .footer-url {
        font-size: 0.9rem;
    }
}