.about-page {
max-width: 1224px;
margin: 120px auto 100px;
padding: 0 24px;
} .company-section {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 552px);
gap: 3rem; align-items: flex-start;
padding: 48px 0 24px;
}
.company-content h1 {
font-size: clamp(2rem, 3.5vw, 2.75rem);
color: var(--primary);
margin-bottom: 24px;
line-height: 1.15;
}
.company-content p {
margin-bottom: 16px;
text-align: justify;
}
.company-content p:last-child {
margin-bottom: 0;
} .company-photo {
position: relative;
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}
.company-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: var(--radius);
border: 1px solid var(--border);
} .video-section {
position: relative;
width: 100%;
height: 100vh; 
max-height: 700px;
overflow: hidden;
margin: 24px 0;
border-radius: var(--radius, 8px); 
}
.video-section iframe {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
border-radius: inherit; 
cursor: pointer;
}
.video-section::after {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
} .play-btn { position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1; background-color: rgba(255, 255, 255, 0.9); 
color: #333; 
border: none;
border-radius: 50%; 
width: 70px; 
height: 70px;
font-size: 32px; 
cursor: pointer; display: flex;
align-items: center;
justify-content: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
opacity: 1;
visibility: visible;
}
.play-btn:hover {
background-color: rgba(255, 255, 255, 1);
} .video-section.is-playing .play-btn {
opacity: 0;
visibility: hidden;
pointer-events: none; } .mission-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
padding: 24px 0 80px;
}
.card {
background-color: var(--bg-white);
padding: 24px;
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.card-icon {
color: var(--primary);
margin-bottom: 20px;
width: 60px;
height: 60px;
}
.card-icon img {
width: 45px;
height: 45px;
}
.card h3 {
font-size: 24px;
font-weight: 700;
line-heigt: 32px;
margin-bottom: 24px;
color: var(--text-light);
}
.card p {
font-size: 18px;
font-weight: 400;
line-height: 24px;
color: var(--text-light);
margin-bottom: 15px;
}
.card p:last-child {
margin-bottom: 0;
} .section-title {
font-size: 32px;
font-weight: 700;
line-height: 40px;
color: var(--primary);
margin-bottom: 24px;
}
.faq-section {
margin-bottom: 60px;
}
.faq-subtitle {
font-size: 18px;
font-weight: 400;
line-height: 24px;
color: var(--text-light);
margin-bottom: 80px;
}
.faq-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.faq-item {
background-color: var(--bg-white);
border: 1px solid var(-text-softer);
border-radius: 12px;
overflow: hidden;
transition: box-shadow 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.faq-question {
width: 100%;
text-align: left;
background: none;
border: none;
padding: 24px;
font-size: 24px;
font-weight: 500;
line-height: 32px;
color: var(--text-light);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question-content {
display: flex;
align-items: center;
gap: 12px;
}
.info-icon {
width: 18px;
height: 18px;
fill: none;
stroke: var(--text-light);
stroke-width: 2;
}
.chevron-icon {
width: 16px;
height: 16px;
fill: none;
stroke: var(--text-light);
stroke-width: 2;
transition: transform 0.3s ease;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
background-color: var(--bg-white);
}
.faq-answer p {
padding: 0 24px 20px 54px;
font-size: 18px;
font-weight: 400;
line-height: 24px;
color: var(--text-light);
margin: 0;
} .faq-item.active .chevron-icon {
transform: rotate(180deg);
}
.faq-item.active .faq-answer {
max-height: 200px; } @media (max-width: 1024px) {
.video-section {
height: 50vh;
}
}
@media (max-width: 768px) {
.company-section {
grid-template-columns: 1fr;
gap: 32px;
}
.video-section {
height: 35vh;
}
.mission-cards {
grid-template-columns: 1fr;
}
.card {
padding: 30px 20px;
}
.section-title {
font-size: 28px;
}
.faq-question {
padding: 16px 20px;
font-size: 14.5px;
}
.faq-answer p {
padding: 0 20px 16px 48px;
}
}
@media (max-width: 480px) {
.video-section {
height: 25vh;
}
}