
        .about_content_wrapper {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .about_hero_section {
            margin-bottom: 80px;
            align-items: center;
        }
        
        .about_main_title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .brand_highlight {
            color: #f8aa7a;
        }
        
        .about_subtitle {
            font-size: 1.4rem;
            color: #7f8c8d;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .about_description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }
        
        .about_stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }
        
        .stat_item {
            text-align: center;
        }
        
        .stat_item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f8aa7a;
            margin-bottom: 5px;
        }
        
        .stat_item p {
            color: #7f8c8d;
            font-weight: 500;
        }
        
        .about_hero_image {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 400px;
        }
        
        .hero_image_container {
            position: relative;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
        }
        
        .hero_icon {
            font-size: 8rem;
            color: white;
            animation: pulse 2s infinite;
        }
        
        .floating_elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .floating_note {
            position: absolute;
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }
        
        .note1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .note2 {
            bottom: 20%;
            left: 10%;
            animation-delay: 1s;
        }
        
        .note3 {
            top: 30%;
            left: -10%;
            animation-delay: 2s;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .section_header {
            margin-bottom: 60px;
        }
        
        .section_header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section_header h2 i {
            color: #f8aa7a;
            margin-right: 15px;
        }
        
        .section_subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        .about_mission_section {
            margin-bottom: 80px;
        }
        
        .mission_card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .mission_card:hover {
            transform: translateY(-10px);
        }
        
        .mission_icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
        }
        
        .mission_icon i {
            font-size: 2rem;
            color: white;
        }
        
        .mission_card h4 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .mission_card p {
            color: #666;
            line-height: 1.7;
        }
        
        .about_contact_section {
            margin-bottom: 80px;
        }
        
        .contact_card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .contact_card:hover {
            transform: translateY(-5px);
        }
        
        .contact_icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
        }
        
        .contact_icon i {
            font-size: 2rem;
            color: white;
        }
        
        .contact_card h4 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .contact_card p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .contact_card a {
            color: #f8aa7a;
            text-decoration: none;
        }
        
        .contact_card a:hover {
            text-decoration: underline;
        }
        
        .about_cta_section {
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            padding: 60px 0;
            border-radius: 20px;
            margin-top: 40px;
        }
        
        .cta_content h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta_content p {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        .cta_buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn_primary {
            background: white;
            color: #f8aa7a;
        }
        
        .btn_primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }
        
        .btn_secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn_secondary:hover {
            background: white;
            color: #f8aa7a;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .about_main_title {
                font-size: 2.5rem;
            }
            
            .about_stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .hero_image_container {
                width: 250px;
                height: 250px;
            }
            
            .hero_icon {
                font-size: 6rem;
            }
            
            .section_header h2 {
                font-size: 2rem;
            }
            
            .cta_content h2 {
                font-size: 2rem;
            }
            
            .cta_buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        

