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

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

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

/* Header Styles */
.header-top {
    background-color: #c44569;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    width: auto;
}

.header-text {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.header-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a365d;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-text p {
    color: #666;
    font-size: 1rem;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #c44569;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Navigation Styles */
.navigation {
    background-color: #c44569;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px;
}

.nav-link:hover,
.nav-link.active {
    background-color: #e5ebf3;
    color: #c44569;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a365d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #8b7f7a 0%, #2d5a87 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.slide-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-controls button {
    background-color: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

/* Important Notice Section */
.important-notice {
    background-color: #e8f5e8;
    padding: 20px 0;
    border-left: 5px solid #28a745;
}

.notice-header h3 {
    color: #155724;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.notice-content {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Information Board Section */
.information-board {
    padding: 60px 0;
    background-color: white;
}

.information-board h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a365d;
}

.highlight {
    color: #c44569;
}

.board-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active,
.tab-btn:hover {
    color: #1a365d;
    border-bottom-color: #c44569;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.table-container {
    overflow-x: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.info-table thead {
    background-color: #1a365d;
    color: white;
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.info-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.info-table tbody tr:hover {
    background-color: #f8f9fa;
}

.view-btn {
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

.table-footer {
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a365d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #c44569;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c44569;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c44569;
    color: #1a365d;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .brand-text {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #c44569;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .board-tabs {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid #e9ecef;
        border-right: none;
    }

    .tab-btn.active,
    .tab-btn:hover {
        border-bottom-color: #e9ecef;
        background-color: #f8f9fa;
    }

    .info-table {
        font-size: 12px;
    }

    .info-table th,
    .info-table td {
        padding: 10px 8px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .information-board h2,
    .gallery h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #8b7f7a 0%, #2d5a87 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content Styles */
.about-content {
    padding: 80px 0;
    background-color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    margin-bottom: 20px;
}

.content-section h3 {
    color: #c44569;
    margin: 30px 0 15px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.content-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c44569;
    font-weight: bold;
}

.governance-info {
    display: grid;
    gap: 20px;
}

.info-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #c44569;
}

.info-card h4 {
    color: #1a365d;
    margin-bottom: 10px;
}

.registration-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.registration-info h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    margin-bottom: 30px;
    text-align: center;
}

.reg-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.reg-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Member Services Styles */
.member-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #c44569;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.service-btn {
    display: inline-block;
    background-color: #c44569;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

/* Member Benefits Styles */
.member-benefits {
    padding: 80px 0;
    background-color: white;
}

.member-benefits h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.benefit-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #c44569;
}

.benefit-item h4 {
    color: #1a365d;
    margin-bottom: 10px;
}

/* Events Styles */
.upcoming-events, .past-events {
    padding: 80px 0;
}

.upcoming-events {
    background-color: white;
}

.past-events {
    background-color: #f8f9fa;
}

.upcoming-events h2, .past-events h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.event-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    transition: all 0.3s ease;
}

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

.event-date {
    background-color: #c44569;
    color: #1a365d;
    padding: 30px 20px;
    text-align: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-content {
    padding: 30px;
    flex: 1;
}

.event-content h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.event-content p {
    margin-bottom: 10px;
    color: #666;
}

.event-btn {
    display: inline-block;
    background-color: #1a365d;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background-color: #2d5a87;
}

/* Timeline Styles */
.events-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c44569;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    background-color: #c44569;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 30px;
    align-self: flex-start;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    color: #1a365d;
    margin-bottom: 10px;
}

/* Event Guidelines Styles */
.event-guidelines {
    padding: 80px 0;
    background-color: white;
}

.event-guidelines h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.guideline-section h3 {
    color: #c44569;
    margin-bottom: 20px;
}

.guideline-section ul {
    list-style: none;
    padding-left: 0;
}

.guideline-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.guideline-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c44569;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Extended Styles */
.gallery-categories {
    padding: 40px 0;
    background-color: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    background-color: transparent;
    border: 2px solid #c44569;
    color: #c44569;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background-color: #c44569;
    color: #1a365d;
}

.gallery-main {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
}

.gallery-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.view-full {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(212, 175, 55, 0.9);
    color: #1a365d;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .view-full {
    opacity: 1;
}

/* Contact Styles */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: #c44569;
    color: #1a365d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #1a365d;
    margin-bottom: 5px;
}

/* Contact Form Styles */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a365d;
    font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c44569;
}

.submit-btn {
    background-color: #c44569;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Management Team Styles */
.management-team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.management-team h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.team-member {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-photo {
    font-size: 4rem;
    color: #c44569;
    margin-bottom: 20px;
}

.team-member h4 {
    color: #1a365d;
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    color: #c44569;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Emergency Contacts Styles */
.emergency-contacts {
    padding: 80px 0;
    background-color: white;
}

.emergency-contacts h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.emergency-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.emergency-item:hover {
    border-color: #c44569;
    transform: translateY(-5px);
}

.emergency-icon {
    font-size: 3rem;
    color: #c44569;
    margin-bottom: 20px;
}

.emergency-item h4 {
    color: #1a365d;
    margin-bottom: 10px;
}

.emergency-item p:last-child {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a365d;
}

/* Forms and Downloads Styles */
.forms-section, .documents-section {
    padding: 80px 0;
}

.forms-section {
    background-color: white;
}

.documents-section {
    background-color: #f8f9fa;
}

.forms-section h2, .documents-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.form-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.form-icon {
    font-size: 3rem;
    color: #c44569;
    margin-bottom: 20px;
}

.form-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.download-btn, .fill-online-btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.download-btn {
    background-color: #c44569;
    color: white;
}

.fill-online-btn {
    background-color: #1a365d;
    color: white;
}

.download-btn:hover {
    background-color: #c44569;
}

.fill-online-btn:hover {
    background-color: #2d5a87;
}

/* Documents Grid Styles */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.document-category {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.document-category h3 {
    color: #1a365d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c44569;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    margin-bottom: 15px;
}

.document-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1a365d;
    transition: all 0.3s ease;
}

.document-link:hover {
    background-color: #c44569;
    color: #1a365d;
    transform: translateX(5px);
}

/* Instructions Styles */
.instructions-section {
    padding: 80px 0;
    background-color: white;
}

.instructions-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.instruction-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c44569;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.instruction-step h4 {
    color: #1a365d;
    margin-bottom: 15px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guidelines-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reg-details {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
    }
    
    .timeline-date {
        margin: 0 0 15px 0;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .events-timeline::before {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

