/* About Page Styles */

.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/business-meeting-two.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.philosophy-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.company-philosophy {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 40px 0;
    line-height: 1.4;
}

.philosophy-description {
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
}

.company-info {
    padding: 100px 0;
}

.info-table {
    max-width: 800px;
    margin: 0 auto;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.info-table th {
    width: 25%;
    text-align: left;
    font-weight: 500;
    color: #333;
}

.company-message {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-body {
    margin-top: 40px;
    line-height: 2;
}

.message-body p {
    margin-bottom: 20px;
}

.message-signature {
    margin-top: 40px;
    text-align: right;
}

.message-signature p {
    margin: 5px 0;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text {
    margin-bottom: 40px;
    line-height: 1.8;
}

.company-profile {
    padding: 100px 0;
    background-color: white;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

.profile-header {
    margin-bottom: 30px;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-body {
    line-height: 2;
}

.profile-body p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    .philosophy-text {
        font-size: 2rem;
    }
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    .info-table th {
        padding-bottom: 5px;
        border-bottom: none;
    }
    .info-table td {
        padding-top: 5px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    .philosophy-text {
        font-size: 1.5rem;
    }
    .company-philosophy,
    .company-info,
    .company-message,
    .company-profile,
    .cta-section {
        padding: 60px 0;
    }
}