* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background-color: #2d2e87;
    padding: 8px 64px;
}

.logo-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: left;
}

/* Container */
.container {
    flex: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

/* Content */
.content {
    flex: 1;
    padding: 48px 32px;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    color: #131439;
}

.heading {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #f7f7fc;
    border: 1px solid #8c8ed9;
    border-radius: 80px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #131439;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #e8e8f5;
}

/* Image Container */
.image-container {
    width: 647px;
    flex-shrink: 0;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        max-width: 500px;
    }

    .header {
        padding: 8px 32px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 24px;
        line-height: 32px;
    }

    .content {
        padding: 32px 16px;
    }

    .header {
        padding: 8px 16px;
    }
}