   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 40px;
            width: 90%;
            max-width: 600px;
            text-align: center;
        }
        
        .flex-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
        }
        
        h1 {
            color: #2575fc;
            font-size: 2.8rem;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #2575fc, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .text-item {
            padding: 15px 30px;
            text-decoration: none;
            background: #f0f8ff;
            border-radius: 12px;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .text-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            background: #e1f0ff;
        }
        
        .text-item h2 {
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .text-item p {
            color: #34495e;
            line-height: 1.6;
        }
        
        .highlight {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            border-left: 5px solid #ff6b6b;
        }
        .ca{
            background-color: turquoise;
            text-decoration: none;
            color: #2575fc;
            font-size: 13px;
            border-radius: 12px;
            border: 5px;
            height: 50px;
            display: flex;
            padding: 14px;
            justify-items: center;
            align-items: center;
            line-height: 1.8em;
        }
        footer{
            padding: 14px;
            background-color: black;
            text-decoration: none;
            color: #b7b7b7;
            font-size: 12px;
            border-radius: 12px;
            border: 5px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1.8em;
        }
