/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply a background color and font to the entire page */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Style the header with a background color, center text, and padding */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Style the navigation within the header */
nav {
    display: flex;
    justify-content: center;
}

/* Style the main heading */
h1 {
    font-size: 24px;
}

/* Create a hero section with background image and text */
.hero {
    background-image: url('../img/orphan_bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0; 
}

/* Style the hero heading and paragraph */
.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Style the call to action (CTA) button */
.cta-button {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e64a19;
}

/* Create a container to center content on the page */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style the registration form */
.registration-form {
    background-color: #fff;
    padding: 40px;
    margin-top: 20px;
    border-radius: 5px;
}

/* Style form labels and inputs */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style the form submit button */
button[type="submit"] {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e64a19;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Style footer text */
footer p {
    font-size: 14px;
}

/* Add responsive styles as needed for different screen sizes */

@media (max-width: 768px) {
    /* Adjust font sizes, margins, and padding for smaller screens */
    h1 {
        font-size: 20px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
    }

    .registration-form {
        padding: 20px;
    }

    label {
        font-size: 16px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 14px;
    }

    button[type="submit"] {
        font-size: 16px;
    }

    footer p {
        font-size: 12px;
    }



    /* Style for the Statistics section */
.statistics {
    background-color: #f8f9fa; /* Light gray background color */
    padding: 60px 0; /* Add some spacing around the content */
}

.statistics i {
    color: #007bff; /* Blue color for the Font Awesome icons */
}

.statistics h3 {
    font-size: 24px; /* Increase font size for the headings */
    margin-top: 20px; /* Add top margin to headings */
}

.statistics p {
    font-size: 18px; /* Font size for the statistics */
    color: #333; /* Text color */
    margin-bottom: 0; /* Remove bottom margin from paragraphs */
}

    
}
