/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ddd;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: 700;
    color: #ff6600;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c2c2c;
    padding: 15px 30px;
}

.logo img {
    max-height: 50px;
}

.header-buttons {
    display: flex;
}

.header-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    margin-left: 15px;
    border: none;
    cursor: pointer;
}

.header-btn:hover {
    background-color: #e67300;
}

/* Section Layout */
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.disaster-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
}

.text-content {
    width: 48%;
}

.image-content {
    width: 48%;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.register-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

.register-btn:hover {
    background-color: #e67300;
}

/* Form Section */
.form-section {
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #444;
    color: #ddd;
}

button[type="submit"] {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #e67300;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    padding: 20px;
    color: rgba(175, 163, 163, 0.998);
    text-align: center;
}

.contact-us {
    text-align: left;
    max-width: 600px;
    margin: auto;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 30px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial {
    padding: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial strong {
    display: block;
    text-align: right;
    font-weight: bold;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    header {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        padding: 10px 20px;
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header-btn {
        width: 100%; /* Make buttons full width */
        text-align: center;
        margin-left: 0;
    }

    /* Disaster Section adjustments */
    .disaster-section {
        flex-direction: column;
        align-items: center;
    }

    .text-content, .image-content {
        width: 100%;
        text-align: center;
    }

    .form-section {
        padding: 20px;
    }

    /* Testimonials Section adjustments */
    .testimonial {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .testimonial strong {
        font-size: 14px;
        text-align: right;
    }

    /* Form Section adjustments for mobile */
    .form-section {
        padding: 15px;
    }

    input, select, button[type="submit"] {
        padding: 12px;
        font-size: 14px;
    }

    /* Image responsiveness */
    img {
        width: 100%;
        height: auto;
    }

    /* Footer adjustments */
    footer p {
        font-size: 14px;
        margin-top: 10px;
    }

    /* Center contact-us section in smaller screens */
    .contact-us {
        text-align: center;
    }
}
