* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.about-page {
    width: 100%;
    height: auto;
}

.about-page-texts {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
    padding: 30px;
}

.about-page-texts p {
    color: #555;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    word-break: break-word;
}

.philosophy {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.philosophy-inner {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.philosophy-title {
    width: 100%;
    text-align: center;
}

.philosophy-title h2 {
    line-height: 48px;
    color: #fff;
    font-family: "unset", sans-serif;
    font-weight: 400;
    font-size: 2rem;
}

.philosophy-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}


.philosophy-card {
    width: 370px;
    height: 309px;
    perspective: 1000px;
}

.philosophy-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.philosophy-card:hover .philosophy-card-inner {
    transform: rotateY(180deg);
}

.philosophy-card-front,
.philosophy-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
}

.philosophy-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-card-centered {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.philosophy-card-centered-image {
    width: 45px;
    height: 45px;
}

.philosophy-card-centered-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-card-centered-title h3 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 42px;
}

.philosophy-card-back {
    background: center / cover no-repeat #0a0a0a;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-card-back-content {
    text-align: center;
    padding: 20px;
}

.philosophy-card-back-content p {
    color: #959595;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    word-break: break-word;
}

