* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

h1 {
    font-size: 3.6rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.8;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

/* Layout */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 8rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.header.scrolled {
    height: 7rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.headbar {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.headbar a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.headbar a:hover,
.headbar a:focus {
    color: #2c5aa0;
    transform: translateY(-2px);
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

.headbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    transition: width 0.3s ease;
}

.headbar a:hover::after,
.headbar a.active::after {
    width: 100%;
}

/* Main content offset for fixed header */
main {
    padding-top: 8rem;
}

/* Hero Section */
#hero {
    min-height: calc(80vh - 8rem);
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6rem;
    max-width: 120rem;
    width: 100%;
}

.photo img {
    width: 30rem;
    height: 35rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

/* Keep original image size for consistency */
.photo img {
    width: 40rem;
    height: 45rem;
}

.about-me {
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.about-me p {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: left;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.foot-contact p {
    margin-bottom: 1rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.foot-contact i {
    color: #3498db;
}

.foot-contact a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.foot-contact a:hover {
    color: #3498db;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-media a {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-media a:hover,
.social-media a:focus {
    background: #3498db;
    transform: translateY(-3px);
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .header {
        padding: 0 2rem;
    }
    
    .headbar {
        gap: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .photo img {
        width: 35rem;
        height: 40rem;
    }
    
    .about-me p {
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .headbar {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: left;
    }
    
    .photo {
        padding: 2rem;
    }
    
    .photo img {
        width: 30rem;
        height: 35rem;
    }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5aa0;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
    padding: 12rem 0 8rem;
    text-align: center;
    color: white;
}

.about-header h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-header .subtitle {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* About Content Section */
.about-content {
    padding: 8rem 0;
        background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.about-photo {
    position: sticky;
    top: 10rem;
}

.about-photo img {
    width: 100%;
    max-width: 35rem;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-photo img:hover {
    transform: translateY(-5px);
}

.about-text {
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #000000;
}

.about-text h3 {
    font-size: 2.4rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    color: #000000;
}

.about-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.about-values ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-values li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.6rem;
    color: #fbfbfb;
}

.about-values li:last-child {
    border-bottom: none;
}

.about-values li strong {
    color: #000000;
    font-weight: 600;
}

.about-personal {
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #2c5aa0;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-photo {
        position: static;
        text-align: center;
    }
    
    .about-photo img {
        max-width: 30rem;
    }
    
    .about-text {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 3.5rem;
    }
    
    .about-header .subtitle {
        font-size: 1.8rem;
    }
    
    .about-text {
        padding: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 30rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 10rem 0 6rem;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .about-personal {
        padding: 2rem;
    }
}

/* Events Hero Section */
.events-hero {
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
    padding: 12rem 0 8rem;
    text-align: center;
    color: white;
}

.events-header h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: white;
}

.events-header .subtitle {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Events Content */
.events-content {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
}

.events-intro {
    text-align: left;
    margin-bottom: 6rem;
}

.events-intro h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: black;
}

.events-intro p {
    font-size: 1.8rem;
    color: white;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 1.8;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.date-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.date-year {
    font-size: 1.2rem;
    opacity: 0.8;
}

.event-content {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.event-details {
    margin-bottom: 2rem;
}

.event-details p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
}

.event-details i {
    color: #2c5aa0;
    width: 1.5rem;
    text-align: center;
}

.event-description {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.rsvp-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 60rem;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.4rem;
    color: white;
}

.close {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 3rem;
}

.selected-event-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #2c5aa0;
}

.selected-event-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.selected-event-info p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a6f, #4a5acf);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.success-content {
    background-color: white;
    margin: 10% auto;
    padding: 4rem;
    border-radius: 15px;
    width: 90%;
    max-width: 45rem;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.success-content h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.success-content p {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 1.7rem;
    line-height: 1.6;
}

/* Responsive Design for Events */
@media (max-width: 968px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .events-header h1 {
        font-size: 3.5rem;
    }
    
    .events-header .subtitle {
        font-size: 1.8rem;
    }
    
    .event-content {
        padding: 2.5rem;
    }
    
    .form-actions {
        justify-content: stretch;
    }
    
    .form-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .success-content {
        padding: 3rem;
    }
}

@media (max-width: 480px) {
    .events-hero {
        padding: 10rem 0 6rem;
    }
    
    .event-content {
        padding: 2rem;
    }
    
    .event-date {
        padding: 1.5rem;
    }
    
    .date-day {
        font-size: 2.5rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Links Hero Section */
.links-hero {
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
    padding: 12rem 0 8rem;
    text-align: center;
    color: white;
}

.links-header h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: white;
}

.links-header .subtitle {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Links Content */
.links-content {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
}

.links-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.links-intro h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: black;
}

.links-intro p {
    font-size: 1.8rem;
    color: white;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 1.8;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.link-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.link-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.link-icon i {
    font-size: 3rem;
    color: white;
}

.link-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.link-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.link-content p {
    font-size: 1.6rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.link-button:hover {
    background: linear-gradient(135deg, #1e3a6f, #4a5acf);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.link-button i {
    font-size: 1.3rem;
}

/* Links CTA Section */
.links-cta {
    margin-top: 6rem;
}

.cta-box {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    padding: 4rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
}

.cta-box > i {
    font-size: 5rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.cta-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-buttons-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-inline,
.btn-secondary-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary-inline {
    background: white;
    color: #2c5aa0;
}

.btn-primary-inline:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary-inline {
    background: transparent;
    color: white;
}

.btn-secondary-inline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design for Links Page */
@media (max-width: 968px) {
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
        gap: 2.5rem;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }
    
    .cta-buttons-inline {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .links-header h1 {
        font-size: 3.5rem;
    }
    
    .links-header .subtitle {
        font-size: 1.8rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .link-card {
        padding: 2.5rem;
    }
    
    .cta-buttons-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-inline,
    .btn-secondary-inline {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .links-hero {
        padding: 10rem 0 6rem;
    }
    
    .link-card {
        padding: 2rem;
    }
    
    .link-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .link-icon i {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 2.5rem;
    }
    
    .cta-box > i {
        font-size: 4rem;
    }
}

/* Donate Hero Section */
.donate-hero {
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
    padding: 12rem 0 8rem;
    text-align: center;
    color: white;
}

.donate-header h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: white;
}

.donate-header .subtitle {
    font-size: 2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Donate Content */
.donate-content {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(13, 95, 219, 0.9) 0%, rgba(163, 58, 45, 0.8) 100%);
}

.donate-message {
    max-width: 90rem;
    margin: 0 auto 6rem;
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.donate-message h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
    text-align: center;
}

.donate-message > p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
}

.impact-list li {
    font-size: 1.7rem;
    color: #2c3e50;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.impact-list i {
    color: #28a745;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Donation Methods */
.donation-methods {
    margin-bottom: 6rem;
}

.donation-methods h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

.donation-card {
    background: white;
    border-radius: 15px;
    padding: 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.primary-method {
    border: 3px solid #2c5aa0;
}

.method-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.method-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.method-icon i {
    font-size: 3.5rem;
    color: white;
}

.donation-card h3 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.method-description {
    font-size: 1.7rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #2c3e50;
}

.feature-item i {
    font-size: 2.4rem;
    color: #2c5aa0;
}

.feature-item span {
    font-size: 1.4rem;
    font-weight: 500;
}

.donate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    padding: 1.8rem 3rem;
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    border-radius: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
}

.donate-button:hover {
    background: linear-gradient(135deg, #1e3a6f, #4a5acf);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
}

.secondary-donate {
    background: linear-gradient(135deg, #0070ba, #1546a0);
}

.secondary-donate:hover {
    background: linear-gradient(135deg, #005a94, #0f357a);
}

.method-note {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
}

/* Legal Information */
.legal-info {
    background: white;
    padding: 4rem;
    border-radius: 15px;
    margin-bottom: 6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.legal-info h3 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.info-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-card h4 i {
    font-size: 2rem;
}

.info-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #2c3e50;
}

/* Alternative Support */
.alternative-support {
    max-width: 100rem;
    margin: 0 auto 6rem;
}

.alternative-support h3 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.alternative-support > p {
    font-size: 1.7rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2.5rem;
}

.support-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-card i {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.support-card h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.support-card p {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

/* Donate Contact */
.donate-contact {
    max-width: 90rem;
    margin: 0 auto;
}

.contact-box {
    background: linear-gradient(135deg, #2c5aa0, #667eea);
    color: white;
    padding: 4rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
}

.contact-box > i {
    font-size: 5rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-box p {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-links a {
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 0.8;
}

.contact-links i {
    font-size: 1.8rem;
}

/* Footer Disclaimer */
.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    color: #95a5a6;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Responsive Design for Donate Page */
@media (max-width: 968px) {
    .donate-message {
        padding: 3rem;
    }
    
    .donation-card {
        padding: 3rem;
    }
    
    .method-features {
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }
    
    .contact-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .donate-header h1 {
        font-size: 3.5rem;
    }
    
    .donate-header .subtitle {
        font-size: 1.8rem;
    }
    
    .donate-message {
        padding: 2.5rem;
    }
    
    .donation-card {
        padding: 2.5rem;
    }
    
    .method-badge {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }
    
    .method-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .legal-info {
        padding: 3rem 2rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .donate-hero {
        padding: 10rem 0 6rem;
    }
    
    .donate-message {
        padding: 2rem;
    }
    
    .donation-card {
        padding: 2rem;
    }
    
    .method-icon {
        width: 7rem;
        height: 7rem;
    }
    
    .method-icon i {
        font-size: 3rem;
    }
    
    .contact-box {
        padding: 2.5rem;
    }
    
    .contact-box > i {
        font-size: 4rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* PayPal Donor Compliance Form Styles */
.compliance-notice {
    background: #e3f2fd;
    border-left: 4px solid #2c5aa0;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: start;
    gap: 1.5rem;
    border-radius: 5px;
}

.compliance-notice i {
    font-size: 2.4rem;
    color: #2c5aa0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.compliance-notice p {
    color: #1565c0;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.info-message {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1.5rem;
    border-radius: 5px;
}

.info-message i {
    font-size: 2rem;
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-message p {
    color: #856404;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
}

.compliance-checkboxes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 1.8rem;
    height: 1.8rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1.6;
    cursor: pointer;
    font-weight: 400;
}

#paypalModal .modal-content {
    max-width: 70rem;
}

#paypalModal .modal-body {
    max-height: 75vh;
    overflow-y: auto;
}