@import url('https://fonts.googleapis.com/css2?family=Autour+One&display=swap');

.about-us-section {
    width: 100vw;
    padding: 3rem 4vw;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Autour One', cursive, sans-serif;
}

.about-header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.about-title-box {
    display: flex;
    align-items: center;
}

.about-title-img {
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.about-arrow-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.about-arrow-box:hover {
    transform: translateY(2px);
}

.about-arrow-img {
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.about-divider {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-line-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-content-box {
    width: 100%;
    max-width: 1400px;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.about-text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

.about-paragraph {
    font-family: 'Autour One', cursive, sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 1.15rem);
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-list {
    list-style: none;
    padding-left: 0.8rem;
    margin: 0.2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.about-list li {
    font-family: 'Autour One', cursive, sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 1.15rem);
    line-height: 1.5;
    color: #333333;
}

.about-footer-text {
    margin-top: 0.6rem;
}

.about-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.paperclip-item {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
}

.paperclip-item.clip-1 {
    width: 55px;
    top: 42%;
    right: 22%;
    transform: rotate(-35deg);
}

.paperclip-item.clip-2 {
    width: 65px;
    top: 38%;
    right: 2%;
    transform: rotate(5deg);
}

.paperclip-item.clip-3 {
    width: 85px;
    bottom: 2%;
    right: 15%;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .paperclip-item.clip-1 {
        width: 40px;
        top: 48%;
        right: 18%;
    }

    .paperclip-item.clip-2 {
        width: 45px;
        top: 42%;
        right: 1%;
    }

    .paperclip-item.clip-3 {
        width: 60px;
        bottom: 1%;
        right: 8%;
    }
}