* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 90%;
    width: 800px;
    position: relative;
}

.image-container {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #fff;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    font-size: 24px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.caption-small {
    font-size: 16px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtext {
    font-size: 22px;
    color: #7f8c8d;
    margin-top: 10px;
    line-height: 1.5;
}

.instructions {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: left;
    font-size: 16px;
    color: #34495e;
    border-left: 5px solid #3498db;
}

.instructions h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.instructions code {
    background-color: #eee;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

/* Register button styles - FIXED for all devices */
.register-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.register-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}



        /* Accordion Styles */
        .accordion {
            margin: 40px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .accordion-item {
            border-bottom: 1px solid #f5f5f5;
            margin-bottom: 10px;
        }
        
        .accordion-header {
            background-color: #ffffff;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
            border-radius: 4px;
        }
        
        .accordion-header:hover {
            background-color: #f7f7f7;
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 18px;
            transition: transform 0.3s;
        }
        
        .accordion-item.active .accordion-header::after {
            content: '-';
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: white;
            line-height: 1.6;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 300px;
            padding: 20px;
        }
        
        .faq-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            color: #333;
        }

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .register-btn {
        padding: 10px 16px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }
    
    /* Ensure the button stays on top of other content */
    .register-btn {
        z-index: 1000;
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .register-btn {
        padding: 8px 12px;
        font-size: 12px;
        top: 5px;
        right: 5px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input.error, .form-group select.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

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

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}


        .top-links {
			font-size: 16px;
			font-weight: 300;
			color: #2c3e50;
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 1px;
        }
        .top-links a {
          	font-size: 16px;
			font-weight: 300;
			color: #3c4d60;
            text-decoration: none;
            padding: 8px 5px;
    
        }
        .top-links a:hover {
  
        }




/* Responsive adjustments */
@media (max-width: 600px) {
	        .top-links {
			font-size: 15px;
			font-weight: 300;
			color: #2c3e50;
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 1px;
        }
        .top-links a {
          	font-size: 15px;
			font-weight: 300;
			color: #3c4d60;
            text-decoration: none;
            padding: 8px 5px;
    
        }
        .top-links a:hover {
  
        }
	
	
	
    .container {
        padding: 25px;
    }
    
    .caption {
        font-size: 18px;
    }
    .caption-small {
        font-size: 12px;
    }	
    
    .subtext {
        font-size: 16px;
    }
    
    .register-btn {
        padding: 10px 16px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }
    
    .modal-content {
        padding: 20px;
    }
}