.about-wrapper {
    background: #fefefe;
    width: 100%;
    padding: 120px 0;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.about {
    display: flex;
    gap: 132px;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 33px;
    flex: 0 0 448px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.22;
    color: #222021;
    letter-spacing: -1.08px;
    margin: 0;
}

.about-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.42;
    color: #222021;
    margin: 0;
}

.dropdowns-wrapper {
    display: flex;
    flex-direction: column;
}

.dropdown {
    border-top: 1px solid #d6d7dd;
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-header:hover {
    background-color: rgba(254, 228, 0, 0.05);
}

.dropdown-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #222021;
    letter-spacing: -0.48px;
    margin: 0;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-icon {
    transform: rotate(45deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dropdown.open .dropdown-content {
    max-height: 1000px;
    padding-bottom: 16px;
}

.dropdown-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #222021;
    letter-spacing: -0.48px;
    margin: 0;
}

.about-image-section {
    position: relative;
    flex-shrink: 0;
}

.about-image {
    width: 564px;
    height: 800px;
    position: relative;
    box-shadow: 16px -16px 0px 0px #fee400;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drawn-misc {
    position: absolute;
    top: 0;
    left: -50px;
    width: 100px;
    height: 108px;
}

.drawn-misc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive design */
@media (max-width: 1200px) {
    .about {
        gap: 80px;
    }

    .about-content {
        flex: 0 0 400px;
    }

    .about-image {
        width: 480px;
        height: 640px;
    }
}

@media (max-width: 1024px) {
    .about-wrapper {
        padding: 80px 0;
    }

    .about {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-content {
        flex: none;
        max-width: 600px;
        margin: 0 auto;
        order: 2;
    }

    .about-image-section {
        order: 1;
    }

    .about-image {
        width: 400px;
        height: 540px;
        margin: 0 auto;
    }

    .drawn-misc {
        left: -40px;
        width: 80px;
        height: 86px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 24px;
    }

    .about-wrapper {
        padding: 60px 0;
    }

    .about {
        gap: 40px;
    }

    .about-content {
        text-align: left;
    }

    .about-title {
        font-size: 28px;
        letter-spacing: -0.84px;
        text-align: center;
    }

    .about-description {
        font-size: 18px;
        text-align: center;
    }

    .dropdown-text {
        text-align: left;
    }

    .about-image {
        width: 320px;
        height: 430px;
        box-shadow: 12px -12px 0px 0px #fee400;
    }

    .drawn-misc {
        left: -30px;
        width: 60px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 16px;
    }

    .about-wrapper {
        padding: 40px 0;
    }

    .about-title {
        font-size: 24px;
        letter-spacing: -0.72px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-image {
        width: 280px;
        height: 380px;
        box-shadow: 8px -8px 0px 0px #fee400;
    }

    .drawn-misc {
        display: none;
    }
}