/* Main Container Styles */
.about-main-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section Styles */
.about-hero-section {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-main-heading {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.about-hero-text {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-shape-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -50px;
    right: -50px;
}

.about-shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(255, 255, 255, 0.08);
    bottom: -86px;
    left: 20%;
    transform: rotate(20deg);
}

.about-shape-square {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 30px;
    right: 15%;
    transform: rotate(45deg);
}

/* Info Boxes Styles */
.about-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid transparent;
}

.about-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-box-1 {
    border-top-color: #6e8efb;
}

.about-box-2 {
    border-top-color: #a777e3;
}

.about-box-3 {
    border-top-color: #4ac7d3;
}

.about-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
    border-radius: 50%;
}

.about-box-icon svg {
    width: 36px;
    height: 36px;
    fill: #6e8efb;
}

.about-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-info-box p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Content Section Styles */
.about-content-section {
    margin-bottom: 60px;
}

.about-content-wrapper {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about-section-heading {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-decorative-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-content-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.about-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-image-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-shape-diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(106, 142, 251, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.about-shape-circle-small {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(167, 119, 227, 0.1);
    bottom: 30px;
    right: 40px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.about-feature-item:hover {
    background: #e9ecef;
}

.about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #6e8efb;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

.about-feature-text {
    font-size: 1.05rem;
    color: #2c3e50;
}

/* FAQ Section Styles */
.about-faq-section {
    margin-bottom: 60px;
}

.about-faq-main-heading {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.about-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.about-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: background 0.3s ease;
}

.about-faq-question:hover {
    background: #f8f9fa;
}

.about-faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6e8efb;
}

.about-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.about-faq-answer p {
    padding: 20px 0;
    color: #34495e;
    line-height: 1.7;
}

.about-faq-item.active .about-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.about-internal-link {
    color: #6e8efb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-internal-link:hover {
    color: #a777e3;
    text-decoration: underline;
}

/* CTA Section Styles */
.about-cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about-cta-heading {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.about-cta-text {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.about-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.about-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 142, 251, 0.3);
}

.about-cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-cta-shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(106, 142, 251, 0.1);
    top: -50px;
    left: -50px;
}

.about-cta-shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(167, 119, 227, 0.1);
    bottom: -30px;
    right: -30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-main-heading {
        font-size: 2.2rem;
    }
    
    .about-hero-text {
        font-size: 1.1rem;
    }
    
    .about-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .about-section-heading {
        font-size: 1.8rem;
    }
    
    .about-faq-main-heading {
        font-size: 1.8rem;
    }
    
    .about-cta-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-main-heading {
        font-size: 1.8rem;
    }
    
    .about-content-wrapper {
        padding: 30px 20px;
    }
    
    .about-faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}