/* About Page Specific Styles */
.about-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9ff 0%, #eaeaff 100%);
}

.about-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-hero .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.about-hero .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #6e45e2, #88a0ff);
    top: -50px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.about-hero .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff7676, #f54ea2);
    bottom: -80px;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

/* Section Title (overridden for about page) */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Values Section */
.mission-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ebedff 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #6e45e2;
    display: inline-block;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* Team Section (Representative Profile) */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9ff 0%, #eaeaff 100%);
}

/* Company Data Section */
.company-data {
    padding: 100px 0;
}

.data-table {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
    border-collapse: collapse;
}

.data-table tr {
    border-bottom: 1px solid #eaeaea;
}

.data-table tr:last-child {
    border-bottom: none;
}

.data-table th {
    width: 30%;
    text-align: left;
    padding: 25px 20px;
    color: #333;
    font-size: 18px;
    background-color: #f9f9ff;
    vertical-align: top;
}

.data-table td {
    width: 70%;
    padding: 25px 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .data-table th, .data-table td {
        display: block;
        width: 100%;
    }

    .data-table th {
        padding-bottom: 5px;
    }

    .data-table td {
        padding-top: 5px;
    }
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}