* {
    box-sizing: border-box;
    margin: 0;
}

p {
    margin: 0;
}

.section1 {
    background-color: white;
}

.section1 .container {
    max-width: 1640px;
    width: 100%;
}

.container {
    margin: 0 auto;
    padding: 80px 12px;
}

.item-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item:first-child {
    align-self: start;
}

.item {
    align-self: end;
    max-width: 700px;
    width: 100%;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-header img {
    height: 70px;
    width: 70px;
}

.item-header h1 {
    color: #33415d;
    font-size: 22px;
    font-weight: bold;
}

.item-body {
    padding-left: 90px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-paragraph {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-paragraph svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.item-paragraph p {
    font-size: 22px;
    color: #646e7a;
}

.section2 {
    background-color: white;
}

.section2 .container {
    max-width: 1440px;
    width: 100%;
}

.sponsor-title {
    text-decoration: underline 4px #f29126;
    font-size: 22px;
    font-weight: bold;
    color: #33415d;
    margin-bottom: 20px;
}

.sponsor-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sponsor-item {
    cursor: pointer;
    width: 25%;
    flex-shrink: 0;
    text-decoration: none;
}

.sponsor-item img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sponsor-item {
        width: 100%;
    }

    .item-header {
        margin-bottom: 20px;
    }
}