/* Start custom CSS for html, class: .elementor-element-a3a57a4 */boy {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .header p {
            font-size: 1.1rem;
            color: #7f8c8d;
        }
        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
        }
        .card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 25px;
            width: calc(25% - 20px);
            min-width: 250px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .card h3 {
            color: #e74c3c;
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 10px;
        }
        .card ul {
            padding-left: 20px;
        }
        .card li {
            margin-bottom: 8px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #f39c12;
        }
        .highlight h3 {
            color: #e67e22;
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        .btn:hover {
            background: #c0392b;
        }
        .contact-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .contact-section h2 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }
        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: background 0.3s ease;
        }
        .whatsapp-btn i {
            margin-right: 8px;
            color:white !important;
        }
        .whatsapp-btn:hover {
            background: #128C7E;
        }
        .contact-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        @media (max-width: 1000px) {
            .card {
                width: calc(50% - 20px);
            }
        }
        @media (max-width: 600px) {
            .card {
                width: 100%;
            }
            .contact-options {
                flex-direction: column;
                align-items: center;
            }
        }/* End custom CSS */