/* .about {
    justify-content: center;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: #8d6e63;
    margin: 0;
    padding: 0;
    display: flex;
}

.aboutTitle {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: #8d6e63;
}

.aboutSubtitle {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: white;
}

.aboutText {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(33, 33, 33);
    color: #8d6e63;
    max-width: 600px;
    gap: 50px;
}

.aboutTitles {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: #8d6e63;
    font-weight: 500;
    gap: 200px;
} */

.wrapperAbout {
    gap: 75px;
}

.aboutTitle {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #8d6e63;
}

.aboutSubtitle {
    align-items: center;
    display: flex;
    justify-content: center;
    color: White;
}

.topLine {
    display: flex;
    align-items: stretch;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.top-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
    min-height: 300px;
}

.top-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
    min-height: 330px;
}

.aboutTitles {
    color: white;
}

.aboutDesc {
    color: #8d6e63;
}

.founder{
    color: white;
}

.placeholder {
    background-color: rgb(33, 33, 33);
}

.dcTitle {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: white;
}

.dcText {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
}

.dcTextWeidth{
    max-width: 600px;
    color: #8d6e63;
}

.dcLink {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: white;
}

.dcLinkText {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgb(33, 33, 33);
    color: #8d6e63;
}

.dcLinkButton {
    background-color: rgb(33, 33, 33);
    align-items: center;
    justify-content: center;
    display: flex;
}

.dcLinkButton img {
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.dcLinkButton img:hover {
    transform: translateY(-5px);
    animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
  from {
    box-shadow: 0 0 10px #5865F2, 0 0 20px rgba(88, 101, 242, 0.5);
  }
  to {
    box-shadow: 0 0 20px #5865F2, 0 0 40px rgba(88, 101, 242, 0.8);
  }
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 1200px) {
    .wrapperAbout {
        gap: 50px;
    }

    .topLine {
        gap: 40px;
    }

    .top-left,
    .top-right {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .wrapperAbout {
        gap: 30px;
        padding: 0 15px;
    }

    .topLine {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .top-left,
    .top-right {
        max-width: 100%;
        min-height: auto;
        gap: 15px;
        width: 100%;
    }

    .aboutTitle,
    .aboutSubtitle {
        font-size: 18px;
    }

    .aboutTitles {
        font-size: 16px;
    }

    .aboutDesc {
        font-size: 14px;
    }

    .dcTextWeidth {
        max-width: 100%;
        font-size: 14px;
    }

    .dcLinkButton img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .wrapperAbout {
        gap: 15px;
        padding: 0 10px;
    }

    .topLine {
        gap: 10px;
    }

    .top-left,
    .top-right {
        max-width: 100%;
        width: 100%;
        gap: 10px;
    }

    .aboutTitle,
    .aboutSubtitle {
        font-size: 16px;
    }

    .aboutTitles {
        font-size: 14px;
    }

    .aboutDesc,
    .dcTextWeidth {
        font-size: 12px;
    }

    .dcLinkButton {
        flex-direction: column;
    }

    .dcLinkButton img {
        width: 100px;
    }

    .dcLink,
    .dcTitle,
    .dcText {
        padding: 10px;
    }
}