.elementor-458 .elementor-element.elementor-element-2aa4a46{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7707f74 *//* Base styles */
      
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6c 100%);
            color: white;
            padding: 25px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .tagline {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e8f4fd"/></svg>');
            padding: 80px 0 60px;
        }
        
        .hero-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-image {
            flex: 1;
            background: #e8f4fd;
            
            border-radius: 10px;
            text-align: center;
            font-size: 18px;
            color: #2c5aa0;
            border: 2px dashed #2c5aa0;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero h1 {
            font-size: 25px;
            margin-bottom: 25px;
            color: #2c5aa0;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .divider {
            height: 3px;
            width: 100px;
            background: #2c5aa0;
            margin: 40px 0;
        }
        
        /* Section styles */
        section {
            padding: 70px 0;
        }
        
        .section-title {
            font-size: 2rem !important;
            color: #2c5aa0;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 600;
        }
        
        .card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #2c5aa0;
        }
        
        .card ul {
            margin: 20px 0;
            padding-left: 20px;
        }
        .tip-item h3{
            font-size: 23px;
        }
        
        .card li {
            margin-bottom: 12px;
            font-size: 18px;
            position: relative;
            padding-left: 10px;
        }
        
        .card li:before {
            content: "•";
            color: #2c5aa0;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        /* Tips section */
        .tips {
            background: #e8f4fd;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .tip-item {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .tip-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .tip-icon {
            font-size: 30px;
            margin-bottom: 15px;
            color: #2c5aa0;
        }
        
        /* Support section */
        .support-content {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .support-text {
            flex: 1;
        }
        
        .support-image {
            flex: 1;
            background: #e8f4fd;
    
            border-radius: 10px;
            text-align: center;
            font-size: 18px;
            color: #2c5aa0;
            border: 2px dashed #2c5aa0;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .support-image img{
            width: 100%;
        }
        
        /* Commitment section */
        .commitment {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6c 100%);
            color: white;
            text-align: center;
        }
        
        .commitment .section-title {
            color: white;
        }
        
        .commitment p {
            font-size: 22px;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .footer-tagline {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .contact-info {
            margin-top: 20px;
            font-size: 17px;
            line-height: 1.8;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            width: 100%;
            font-size: 15px;
            opacity: 0.7;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .hero-content, .support-content {
                flex-direction: column;
            }
            
            .card {
                padding: 25px;
            }
            
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */