:root {
            --primary-color: #252850;
            --secondary-color: #FFC107;
            --accent-color: #FFA000;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --gray: #e0e0e0;
            --dark-gray: #757575;
            --transition: all 0.3s ease;
            --success-color: #4CAF50;
            --error-color: #F44336;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }

        .container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .simple-header {
            background-color: var(--primary-color);
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .simple-header .logo img {
            height: 80px;
            max-width: 100%;
        }

        .header-title {
            color: white;
            font-size: 1.8rem;
            margin: 0;
        }

        main {
            flex: 1;
            padding: 1rem;
        }

        .form-section {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0;
        }

        .form-section h1 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .form-section p {
            color: var(--dark-gray);
            text-align: center;
            margin-bottom: 2rem;
        }

        form {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        fieldset {
            border: 1px solid var(--gray);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        legend {
            padding: 0 10px;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--gray);
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
            box-sizing: border-box;
        }

        input:focus, select:focus, textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
        }

        .radio-group {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 8px 16px;
            background: #f5f5f5;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .radio-option:hover {
            background: #e0e0e0;
        }

        .radio-input {
            margin: 0;
            width: auto;
        }

        .optional {
            color: var(--dark-gray);
            font-weight: normal;
        }

        .required::after {
            content: " *";
            color: var(--error-color);
        }

        .submit-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 2rem auto 0;
            width: 100%;
            max-width: 250px;
        }

        .submit-button:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .alert-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px 25px;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            max-width: 90%;
            text-align: center;
        }

        .alert-message.show {
            opacity: 1;
        }

        .alert-success {
            background-color: var(--success-color);
        }

        .alert-error {
            background-color: var(--error-color);
        }

        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: center;
            margin-top: 100px;
        }
        
        .social-links {
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            margin: 0 0.5rem;
            text-decoration: none;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
        }

        .tutor-section {
            display: none;
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid var(--secondary-color);
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .form-section {
                padding: 0;
            }
            
            form {
                padding: 1.5rem;
            }
            
            fieldset {
                padding: 1rem;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .radio-option {
                width: auto;
                min-width: 120px;
                justify-content: center;
                padding: 10px 20px;
            }
            
            .submit-button {
                max-width: 100%;
            }
            
            .form-section h1 {
                font-size: 1.5rem;
            }
            
            .simple-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .header-title {
                font-size: 1.4rem;
            }
            .simple-header .logo img {
                height: 30px;
                max-width: 100%;
                
            }

            .simple-header .logo img.logo-top {
                height: 45px;
                max-width: 100%;
            }




        }