/* 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: #fff;
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

/* Footer logo styling */
.footer-logo .logo-svg {
    height: 80px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 54, 253, 0.2);
    border-bottom: 1px solid rgba(248, 218, 122, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F8DA7A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: #F8DA7A;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    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="luxury" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(248,218,122,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #F8DA7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #F8DA7A;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #F8DA7A, #FFD700);
    color: #1305D3;
    border: 2px solid #F8DA7A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #F8DA7A);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 218, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #F8DA7A;
    border: 2px solid #F8DA7A;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #F8DA7A;
    color: #1305D3;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 218, 122, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 3px solid rgba(248, 218, 122, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(19, 5, 211, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(248, 218, 122, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.coming-soon-badge i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #F8DA7A;
}

.coming-soon-badge span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1305D3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(19, 5, 211, 0.1);
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1305D3;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.about-cta {
    margin-top: 3rem;
    text-align: left;
    padding: 0.5rem 0;
}

.about-cta .btn {
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(19, 5, 211, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-cta .btn:hover::before {
    left: 100%;
}

.about-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(19, 5, 211, 0.4);
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #FF36FD;
    margin-top: 0.25rem;
}

.feature h4 {
    font-weight: 600;
    color: #1305D3;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-office-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 3px solid rgba(248, 218, 122, 0.2);
}

.about-office-image:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(248, 218, 122, 0.4);
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(19, 5, 211, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF36FD, #1305D3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 5, 211, 0.15);
    border-color: rgba(19, 5, 211, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1305D3;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF36FD;
    font-weight: bold;
}

/* Events Section */
.events {
    padding: 80px 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(19, 5, 211, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 5, 211, 0.15);
    border-color: rgba(19, 5, 211, 0.3);
}

.event-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.event-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image-img {
    transform: scale(1.1);
}

.event-image .image-placeholder {
    background: transparent;
    color: #fff;
}

.event-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1305D3;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-date, .event-location, .event-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.event-price {
    color: #059669;
    font-weight: 600;
}

.event-description {
    color: #475569;
    line-height: 1.6;
    margin-top: auto;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.event-content p:last-child {
    color: #475569;
    line-height: 1.6;
    margin-top: 1rem;
}

.events-cta {
    text-align: center;
    margin-top: 3rem;
}

.events-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Coming Soon Section */
.coming-soon {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.coming-soon::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 54, 253, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(19, 5, 211, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coming-soon-header {
    margin-bottom: 4rem;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #F8DA7A;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 10px 30px rgba(248, 218, 122, 0.3);
}

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

.coming-soon h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #ffffff;
}

.coming-soon-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin: 4rem auto;
    max-width: 1200px;
    justify-content: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF36FD, #1305D3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1;
    opacity: 1;
    margin: 0;
    font-weight: 500;
    color: #ffffff;
}

.coming-soon-cta {
    margin-top: 4rem;
    text-align: center;
}

.coming-soon-cta p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.progress-bar {
    width: 350px;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F8DA7A, #FF36FD, #F8DA7A);
    border-radius: 6px;
    width: 75%;
    animation: progress 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(248, 218, 122, 0.5);
}

@keyframes progress {
    0%, 100% { width: 75%; }
    50% { width: 85%; }
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FF36FD;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 6;
    color: #1305D3;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #1305D3;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.notification-message {
    flex: 1;
    margin-right: 15px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.notification-close:hover {
    background-color: #f0f0f0;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-info {
    border-left-color: #17a2b8;
}

/* Responsive notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1305D3 0%, #0a0233 100%);
    color: #fff;
    padding: 80px 0 30px;
    border-top: 3px solid rgba(248, 218, 122, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F8DA7A;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #93c5fd;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #FF36FD;
}

/* Payment Methods in Footer */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-logo {
    height: 40px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
    filter: none;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1305D3;
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-office-image {
        max-width: 100%;
        height: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon h2 {
        font-size: 2.5rem;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .logo-svg {
        height: 50px;
    }
    
    .footer-logo .logo-svg {
        height: 70px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .footer-logo .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .about-office-image {
        height: 200px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .logo-svg {
        height: 40px;
    }
    
    .footer-logo .logo-svg {
        height: 55px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .footer-logo .logo-text {
        font-size: 16px;
    }
    
    .coming-soon-badge {
        padding: 1.5rem;
    }
    
    .coming-soon-badge i {
        font-size: 2rem;
    }
    
    .coming-soon-badge span {
        font-size: 1rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .progress-bar {
        width: 200px;
    }
} 

/* Page Layout Styles */
.page-header {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-wrapper-full {
    max-width: 900px;
    margin: 0 auto;
}

.content-main {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-main-full {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1305D3;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.content-section h3:first-of-type {
    border-top: none;
    padding-top: 0;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.placeholder-text {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.placeholder-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FF36FD;
}

.last-updated {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2196f3;
}

.policy-highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 25px;
    margin-top: 2rem;
    border-left: 4px solid #f39c12;
}

.policy-highlight h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.policy-highlight ul {
    margin: 0;
    padding-left: 1.5rem;
}

.policy-highlight li {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* Payment Confirmation Highlight */
.payment-confirmation-highlight {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 25px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
    text-align: center;
}

.payment-confirmation-highlight h4 {
    color: #155724;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-confirmation-highlight p {
    color: #155724;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.payment-confirmation-highlight i {
    color: #28a745;
    font-size: 1.4rem;
}

/* Policy Table Styles */
.policy-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.policy-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.policy-table th {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.policy-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background: #f8f9fa;
}

.policy-table th:first-child,
.policy-table td:first-child {
    font-weight: 600;
    color: #333;
}

.policy-table td:last-child {
    color: #666;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-section {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1305D3;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-section li {
    margin-bottom: 0.8rem;
}

.sidebar-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-section a:hover {
    color: #FF36FD;
    background: #f8f9fa;
    padding-left: 8px;
}

.sidebar-section p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-main {
        padding: 30px 20px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .sidebar-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .content-main {
        padding: 25px 15px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
} 

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(19, 5, 211, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #FF36FD;
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #fff;
    color: #1305D3;
    transform: translateY(-2px);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
} 

/* Events Page Styles */
.events-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-card-detailed {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.event-header {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    padding: 30px;
    position: relative;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-right: 120px;
    color:#fff;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.event-meta-item i {
    color: #F8DA7A;
    font-size: 1.2rem;
    width: 20px;
}

.event-content {
    display: block;
    padding: 40px;
    max-width: 100%;
}

.event-description h4 {
    color: #1305D3;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.event-description h4:first-child {
    margin-top: 0;
}

.event-description p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.event-description ul {
    margin: 1rem 0 1.5rem 2rem;
}

.event-description li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

/* Coverage Grid Styles */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 1.5rem 0;
}

.coverage-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #FF36FD;
}

.coverage-item:hover {
    border-color: #1305D3;
    box-shadow: 0 4px 20px rgba(19, 5, 211, 0.1);
    transform: translateY(-2px);
}

.coverage-icon {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.coverage-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.coverage-content h5 {
    color: #1305D3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.coverage-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.event-booking {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FF36FD;
    height: fit-content;
}

.event-booking h4 {
    color: #1305D3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-booking p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.event-interest-form .form-group {
    margin-bottom: 15px;
}

.event-interest-form input,
.event-interest-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.event-interest-form input:focus,
.event-interest-form textarea:focus {
    outline: none;
    border-color: #1305D3;
}

.event-interest-form textarea {
    resize: vertical;
    min-height: 80px;
}

.event-interest-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-event-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #FF36FD;
}

.modal-event-info h4 {
    color: #1305D3;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.modal-event-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

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

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1305D3;
    font-size: 0.95rem;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
    outline: none;
    border-color: #1305D3;
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-form select {
    cursor: pointer;
}

.modal-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.coming-soon-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.coming-soon-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 54, 253, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(19, 5, 211, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #F8DA7A;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(248, 218, 122, 0.3);
}

.coming-soon-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 1;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .event-content {
        padding: 30px 20px;
    }
    
    .event-header {
        padding: 25px 20px;
    }
    
    .event-header h3 {
        font-size: 1.8rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .event-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .event-interest-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .event-header {
        padding: 20px 15px;
    }
    
    .event-content {
        padding: 20px 15px;
    }
    
    .event-booking {
        padding: 25px 20px;
    }
    
    .coming-soon-section {
        padding: 30px 20px;
    }
    
    .coverage-item {
        padding: 15px;
    }
    
    .coverage-icon {
        width: 40px;
        height: 40px;
    }
    
    .coverage-icon i {
        font-size: 1.2rem;
    }
} 

/* Responsive Design for Events */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        margin-bottom: 1rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-content h3 {
        font-size: 1.3rem;
    }
    
    .events-cta .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
} 

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon h2 {
        font-size: 2.5rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
} 

/* Organizers Page Styles */
.partnership-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Partnership Benefits */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(19, 5, 211, 0.15);
    border-color: rgba(19, 5, 211, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.benefit-card h3 {
    color: #1305D3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Partnership Process */
.partnership-process {
    margin: 4rem 0;
}

.partnership-process h2 {
    text-align: center;
    color: #1305D3;
    margin-bottom: 3rem;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #FF36FD;
}

.step-number {
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1305D3;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Event Types */
.event-types {
    margin: 4rem 0;
}

.event-types h2 {
    text-align: center;
    color: #1305D3;
    margin-bottom: 1rem;
}

.event-types > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.event-type-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(19, 5, 211, 0.15);
}

.event-type-item i {
    font-size: 2rem;
    color: #FF36FD;
    margin-bottom: 1rem;
}

.event-type-item h4 {
    color: #1305D3;
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
}

.event-type-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Partnership Requirements */
.partnership-requirements {
    margin: 4rem 0;
}

.partnership-requirements h2 {
    text-align: center;
    color: #1305D3;
    margin-bottom: 2rem;
}

.requirements-list {
    display: grid;
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.requirement-item i {
    color: #059669;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.requirement-item h4 {
    color: #1305D3;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.requirement-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Partnership Contact Form */
.partnership-contact {
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid #FF36FD;
}

.partnership-contact h2 {
    text-align: center;
    color: #1305D3;
    margin-bottom: 1rem;
}

.partnership-contact > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.partnership-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.partnership-form .form-group {
    margin-bottom: 1.5rem;
}

.partnership-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1305D3;
    font-size: 0.95rem;
}

.partnership-form input,
.partnership-form textarea,
.partnership-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.partnership-form input:focus,
.partnership-form textarea:focus,
.partnership-form select:focus {
    outline: none;
    border-color: #1305D3;
}

.partnership-form textarea {
    resize: vertical;
    min-height: 100px;
}

.partnership-form select {
    cursor: pointer;
}

.partnership-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Responsive Design for Organizers */
@media (max-width: 768px) {
    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partnership-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .partnership-contact {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .partnership-contact {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card,
    .event-type-item {
        padding: 1.5rem 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
} 

/* About Page Styles */
.about-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

.about-office-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-image-content h3 {
    color: #1305D3;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-image-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(19, 5, 211, 0.15);
    border-color: rgba(19, 5, 211, 0.3);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF36FD 0%, #1305D3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.about-card h3 {
    color: #1305D3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-mission {
    background: linear-gradient(135deg, #1305D3 0%, #FF36FD 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
}

.about-mission h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    margin: 4rem 0;
}

.about-values h3 {
    text-align: center;
    color: #1305D3;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

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

.value-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(19, 5, 211, 0.15);
}

.value-item h4 {
    color: #1305D3;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.value-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    border-left: 4px solid #FF36FD;
}

.about-cta h3 {
    color: #1305D3;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-cta p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-image-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-mission,
    .about-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-mission,
    .about-cta {
        padding: 1.5rem 1rem;
    }
    
    .about-card,
    .value-item {
        padding: 1.5rem 1rem;
    }
} 