/* UCAT Pages CSS - ucat-pages.css (Merged for all content pages) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Daily Color Schemes - matches your home page */
:root {
    /* Monday - Professional Blue */
    --monday-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Tuesday - Energetic Orange */
    --tuesday-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    /* Wednesday - Fresh Green */
    --wednesday-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    /* Thursday - Warm Purple */
    --thursday-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    /* Friday - Vibrant Pink */
    --friday-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    /* Saturday - Sunset Orange */
    --saturday-gradient: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
    /* Sunday - Peaceful Lavender */
    --sunday-gradient: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    /* Default fallback */
    --daily-gradient: var(--monday-gradient);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--daily-gradient);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

    /* Background animation - matches your home page */
    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--daily-gradient);
        opacity: 0.9;
        z-index: 1;
    }

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

    .shape:nth-child(1) {
        top: 10%;
        left: 10%;
        width: 80px;
        height: 80px;
        background: #fff;
        border-radius: 50%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        top: 20%;
        right: 10%;
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 20px;
        animation-delay: 2s;
    }

    .shape:nth-child(3) {
        bottom: 20%;
        left: 15%;
        width: 100px;
        height: 100px;
        background: #fff;
        border-radius: 50%;
        animation-delay: 4s;
    }

    .shape:nth-child(4) {
        bottom: 30%;
        right: 20%;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 10px;
        animation-delay: 1s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* SHARED COMPONENTS */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #333, #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .header .subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1rem;
    }

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* NAVIGATION */
.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .nav-btn:hover {
        background: rgba(102, 126, 234, 0.9);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        text-decoration: none;
    }

    .nav-btn.active {
        background: rgba(102, 126, 234, 0.9);
        color: white;
    }

/* TYPOGRAPHY */
h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

    h2:first-child {
        margin-top: 0;
    }

h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

h4 {
    color: #495057;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

h5 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* CONTENT BOXES */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.warning-box {
    background: linear-gradient(135deg, #fff3e0, #fafafa);
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.data-category {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* SECTION NUMBERS */
.section-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* RIGHTS GRID (Privacy Policy) */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

    .right-item h4 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

/* NEWS PAGE SPECIFIC STYLES */

/* News page header (different from legal pages) */
.news-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    margin-bottom: 0;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.login-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .login-link:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }

.logout-message {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logout-title {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logout-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.btn-secondary {
    background: rgba(116, 185, 255, 0.1);
    color: #0984e3;
    border: 2px solid #74b9ff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.news-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    font-size: 0.8rem;
    color: #74b9ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.news-excerpt {
    color: #636e72;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #b2bec3;
}

.read-more {
    color: #74b9ff;
    text-decoration: none;
    font-weight: 500;
}

    .read-more:hover {
        text-decoration: underline;
        color: #74b9ff;
    }

/* FOOTER */
.fxt-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
}

.fxt-transformY-50 {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}

.fxt-transition-delay-5 {
    transition-delay: 0.5s;
}

.fxt-footer p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

    .fxt-footer p:first-child {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

.fxt-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

    .fxt-footer a:hover {
        color: white;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        text-decoration: none;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header, .news-header {
        padding: 1.5rem 1rem;
    }

        .header h1 {
            font-size: 2rem;
        }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .nav-buttons {
        justify-content: center;
    }

    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .logout-title {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .fxt-footer {
        padding: 1.5rem 1rem;
    }

        .fxt-footer p:last-child {
            font-size: 0.9rem;
            line-height: 1.8;
        }
}
/* Add this to your existing CSS */

/* Integrated header within content-section */
.integrated-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

    .integrated-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #333, #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .integrated-header .subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 1rem;
    }

    .integrated-header .last-updated {
        font-size: 0.9rem;
        color: #888;
        font-style: italic;
        margin: 0;
    }

/* Responsive adjustments for integrated header */
@media (max-width: 768px) {
    .integrated-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

        .integrated-header h1 {
            font-size: 2rem;
        }

        .integrated-header .subtitle {
            font-size: 1rem;
        }
}

/* Contact Form Styles for Content Pages Layout */

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 2rem;
}

    .contact-title h3 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .contact-title p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0;
    }

.fxt-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

    .form-control:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .form-control::placeholder {
        color: #999;
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.captcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.button-contactForm {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 1rem auto 0;
    display: block;
}

    .button-contactForm:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        background: linear-gradient(135deg, #764ba2, #667eea);
    }

    .button-contactForm:active {
        transform: translateY(0);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-title h3 {
        font-size: 1.6rem;
    }

    .contact-title p {
        font-size: 1rem;
    }

    .form-control {
        padding: 10px 14px;
    }

    .button-contactForm {
        width: 100%;
        max-width: none;
    }
}

/* Contact Success Page Styles */

.success-message-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s ease-out;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.checkmark {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    animation: checkmarkAppear 0.8s ease-out 0.3s both;
}

.success-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

    .success-actions .btn {
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        min-width: 160px;
    }

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        background: linear-gradient(135deg, #764ba2, #667eea);
        text-decoration: none;
        color: white;
    }

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #667eea;
}

    .btn-secondary:hover {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        text-decoration: none;
    }

/* Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkAppear {
    from {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .success-message-container {
        padding: 1.5rem 0;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark {
        font-size: 1.5rem;
    }

    .success-content h3 {
        font-size: 1.6rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

        .success-actions .btn {
            width: 100%;
            max-width: 250px;
        }
}
/* Request Access Page Styles */

.request-access-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.greeting-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.welcome-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Info Section */
.info-section {
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

    .info-section h3 {
        color: #2c3e50;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .info-section h4 {
        color: #495057;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .info-section h5 {
        color: #495057;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

/* Content Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.requirements-box {
    background: linear-gradient(135deg, #fff8e1, #fffbf0);
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Request Instructions */
.request-instructions {
    margin: 2rem 0;
}

.description-content {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-top: 1rem;
}

.requirements-box ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.requirements-box li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Action Section */
.action-section {
    text-align: center;
    margin: 2.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

    .action-section .btn {
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        margin: 0.5rem;
        min-width: 200px;
        display: inline-block;
    }

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        background: linear-gradient(135deg, #764ba2, #667eea);
        text-decoration: none;
        color: white;
    }

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid #667eea;
}

    .btn-secondary:hover {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        text-decoration: none;
    }

/* Copyright Section */
.copyright-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

    .copyright-section p {
        color: #888;
        font-size: 0.9rem;
        margin: 0;
        font-style: italic;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .request-access-container {
        padding: 0 0.5rem;
    }

    .welcome-section h2 {
        font-size: 1.5rem;
    }

    .greeting-icon {
        font-size: 2.5rem;
    }

    .info-section h3 {
        font-size: 1.2rem;
    }

    .info-section h4 {
        font-size: 1.1rem;
    }

    .action-section .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }

    .highlight-box,
    .info-box,
    .requirements-box {
        padding: 1rem;
        margin: 1rem 0;
    }
}