/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --primary-blue: #1e3a5f;
    --primary-orange: #ff6b35;
    --light-blue: #4a90e2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

.btn-apply {
    background-color: var(--primary-orange);
    color: white;
    width: 100%;
}

.btn-apply:hover {
    background-color: #e55a2b;
}

.btn-submit {
    background-color: var(--primary-orange);
    color: white;
    width: 100%;
    font-size: 18px;
    padding: 16px;
}

.btn-submit:hover {
    background-color: #e55a2b;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-call {
    background-color: #10b981;
    color: white;
}

.btn-call:hover {
    background-color: #059669;
}

.btn-chat {
    background-color: #3b82f6;
    color: white;
    margin-left: 16px;
}

.btn-chat:hover {
    background-color: #2563eb;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo i {
    margin-right: 8px;
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.urgency-banner {
    background-color: #dc2626;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.urgency-banner i {
    margin-right: 8px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Application Card */
.application-card {
    background: white;
    color: var(--gray-800);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.application-card h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-size: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    background: var(--gray-50);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.feature-item:first-child {
    background: #dbeafe;
}

.feature-item:first-child i {
    color: var(--primary-blue);
}

.feature-item:last-child {
    background: #fed7aa;
}

.feature-item:last-child i {
    color: var(--primary-orange);
}

.feature-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.feature-item p {
    font-weight: 600;
    font-size: 14px;
}

/* Forms */
.quick-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-form input,
.quick-form select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.quick-form input:focus,
.quick-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.security-note {
    display: flex;
    align-items: center;
    color: #10b981;
    font-size: 14px;
    margin-bottom: 8px;
}

.security-note i {
    margin-right: 8px;
}

.disclaimer {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--gray-600);
}

/* Accreditation Section */
.accreditation {
    padding: 64px 0;
    background: white;
}

.accreditation-scroll {
    overflow: hidden;
    position: relative;
}

.accreditation-track {
    display: flex;
    gap: 32px;
    animation: scroll 30s linear infinite;
}

.accreditation-item {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.accreditation-item:hover {
    transform: translateY(-4px);
}

.accreditation-item.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.accreditation-item i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.accreditation-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Section */
.features {
    padding: 64px 0;
    background: var(--gray-50);
}

.features-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 24px;
}

.feature-icon.blue { background: #dbeafe; color: var(--light-blue); }
.feature-icon.orange { background: #fed7aa; color: var(--primary-orange); }
.feature-icon.purple { background: #e9d5ff; color: #7c3aed; }
.feature-icon.green { background: #d1fae5; color: #10b981; }
.feature-icon.red { background: #fee2e2; color: #dc2626; }
.feature-icon.indigo { background: #e0e7ff; color: #6366f1; }
.feature-icon.yellow { background: #fef3c7; color: #d97706; }

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 64px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefits-text h2 {
    color: var(--gray-900);
    margin-bottom: 24px;
}

.benefits-text p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-text h3 {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.benefits-text ul {
    list-style: none;
}

.benefits-text li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.benefits-text li i {
    color: var(--primary-orange);
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Courses Section */
.courses {
    padding: 64px 0;
    background: var(--gray-50);
}

.course-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: fit-content;
    margin: 0 auto 48px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--gray-100);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-card.hidden {
    display: none;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 24px;
}

.course-badge {
    background: #dbeafe;
    color: var(--light-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.course-content h3 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.course-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.course-content hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.course-details {
    margin-bottom: 24px;
}

.course-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.accreditation-badge {
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-700);
    margin-bottom: 16px;
    font-weight: 600;
}

.view-more {
    text-align: center;
    margin-top: 48px;
}

/* Admission Process */
.admission-process {
    padding: 64px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.step-number.blue { background: var(--primary-blue); }
.step-number.orange { background: var(--primary-orange); }
.step-number.green { background: #10b981; }
.step-number.purple { background: #7c3aed; }

.step h3 {
    color: var(--gray-900);
    margin-bottom: 16px;
}

.step p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Companies Section */
.companies {
    padding: 64px 0;
    background: var(--gray-50);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.company-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.company-item:hover {
    transform: translateY(-4px);
}

/* Contact Section */
.contact {
    padding: 64px 0;
    background: var(--primary-blue);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-text h3 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.footer-main p {
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.disclaimer-card {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    padding: 24px;
    border-radius: 12px;
}

.disclaimer-card h4 {
    color: var(--primary-orange);
    margin-bottom: 12px;
    font-weight: bold;
}

.disclaimer-card p {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.5;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #9ca3af;
}

.contact-info i {
    color: var(--primary-orange);
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.modal-header.orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8a5b 100%);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close {
    color: white;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.application-form,
.brochure-form {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-900);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-700);
}

.btn-submit-modal {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-modal:hover {
    background: #e55a2b;
}

.btn-submit-modal i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .benefits-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .contact-text h2 {
        font-size: 2rem;
    }
    
    .contact-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .course-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .application-form,
    .brochure-form {
        padding: 24px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0 40px;
    background: white;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    color: var(--primary-blue);
    font-size: 3rem;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--gray-600);
    font-size: 16px;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding-top: 16px;
}

.legal-section h3 {
    color: var(--gray-800);
    font-size: 1.3rem;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    color: var(--gray-700);
    margin-bottom: 16px;
    text-align: justify;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

.contact-details {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    margin: 16px 0;
}

.contact-item {
    margin-bottom: 12px;
    color: var(--gray-700);
    line-height: 1.5;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.disclaimer-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    margin: 32px 0;
}

.disclaimer-section h2 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.disclaimer-section p {
    color: var(--gray-800);
    margin-bottom: 12px;
}

.disclaimer-section h3 {
    color: var(--gray-800);
    font-size: 1.2rem;
    margin: 16px 0 8px 0;
}

.disclaimer-section ul {
    margin-bottom: 0;
}

.disclaimer-section li {
    color: var(--gray-800);
}

.legal-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--gray-200);
}

.legal-footer p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.legal-footer .btn {
    margin-bottom: 16px;
}

/* Legal page responsive design */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0 20px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 0 16px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        text-align: left;
    }
    
    .contact-details {
        padding: 16px;
    }
    
    .disclaimer-section {
        padding: 16px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Print Styles */
@media print {
    .navbar,
    .modal,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
}