* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Main Form Section */
.main-section {
    padding: 40px 0 60px;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-error p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Application Form */
.application-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-field label i {
    color: #667eea;
    font-size: 1rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-field input::placeholder {
    color: #999;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 1.1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-content:before {
    content: '"';
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    left: -5px;
    top: -15px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-info p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-tagline {
    color: #ffd700;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: white;
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-section {
        padding: 20px 0 40px;
    }
    
    .form-container {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .form-header h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-field input,
    .form-field select {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px 15px;
    }
    
    .form-header h1 {
        font-size: 1.4rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .testimonial-card {
        padding: 18px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    animation: slide 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider .testimonial-card {
    min-width: 350px;
    flex-shrink: 0;
}

/* Privacy Policy Page */
.policy-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.policy-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.policy-content section {
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.policy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links-text {
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-links-text a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links-text a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive for slider */
@media (max-width: 768px) {
    .testimonials-slider .testimonial-card {
        min-width: 300px;
    }
    
    .policy-content {
        padding: 25px 20px;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonials-slider .testimonial-card {
        min-width: 280px;
    }
    
    .policy-content h1 {
        font-size: 1.6rem;
    }
}