* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a4d6d 0%, #2d6a8f 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 900px;
            width: 100%;
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #1a4d6d 0%, #2d6a8f 100%);
            padding: 40px;
            text-align: center;
            color: white;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .logo img{
           
            width: 130px;
            height: 130px;
            /*background: radial-gradient(circle at 30% 30%, #ff4444, #ff0000);*/
            border-radius: 50%;
            /*border: 6px solid white;*/
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px  50px rgba(13, 13, 13, 0.3);
            position: relative;
            
        }

       
        h1 {
            font-size: 2.5em;
            margin: 0;
        }

        .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
        }

        .status {
            background: #2ecc71;
            color: white;
            padding: 15px 30px;
            margin: 20px 40px;
            border-radius: 10px;
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            animation: pulse 2s infinite;
        }

        .status a{
            text-decoration: none;
            display: inline-block;
            
           
            color: white;


        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .content {
            padding: 40px;
        }

        .welcome {
            text-align: center;
            margin-bottom: 40px;
        }

        .welcome h2 {
            color: #1a4d6d;
            font-size: 2em;
            margin-bottom: 15px;
        }

        .welcome p {
            color: #666;
            font-size: 1.1em;
            line-height: 1.6;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .phone-card {
            background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
            color: white !important;
        }

        .phone-card h3 {
            color: white !important;
        }

        .phone-card p {
            color: white !important;
        }

        .phone-card strong {
            font-size: 1.05em;
            color: white !important;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: #2d6a8f;
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .service-card h3 {
            color: #1a4d6d;
            margin-bottom: 10px;
            font-size: 1.3em;
        }

        .service-card p {
            color: #666;
            font-size: 0.95em;
        }

        .contact-section {
            background: linear-gradient(135deg, #1a4d6d 0%, #2d6a8f 100%);
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            text-align: center;
            color: white;
        }

        .contact-section h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .contact-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #20ba5a;
            transform: scale(1.05);
        }

        .btn-phone {
            background: #ff3333;
            color: white;
        }

        .btn-phone:hover {
            background: #e62e2e;
            transform: scale(1.05);
        }

        .footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9em;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }
            
            .services {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }