/* General Reset */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #0c0c0c;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

header .logo {
    width: 120px;
    margin-bottom: 10px;
}

header h1 {
    font-size: 1.8rem;
}

nav {
    background-color: #966bf5;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 5px 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #29ABE2;
}

/* Bulleted List Styles */


/* Content Section */
.content-section {
    padding: 25px;
    margin: 0px 0px;
    background-color: #fff;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #0C0C0C;
}

.three-column-grid {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr; /* Single column by default */
    gap: 20px;
    margin-top: 20px;
}

.column {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
}

.column img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}
.row {
    background-color: #f0f0f0;
    padding: 50px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.row:hover {
    transform: translateY(-5px);
}

.row img {
    width: 50%;
    max-width: 100%;
    height: auto;
    margin-top: 0px;
    border-radius: 300px;
}

.single-column-grid {
    padding: 10px;
    background-color: #f4f4f4;
}

.single-column-grid .row {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Bulleted List Styles */


/* Footer */
footer {
    background-color: #0C0C0C;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-contact,
.footer-social {
    flex: 1 1 300px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    margin: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #444;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #29ABE2;
}

.social-icon {
    width: 20px;
    margin-right: 8px;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .three-column-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    header h1 {
        font-size: 2.2rem;
    }

    nav ul li a {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .three-column-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for desktops */
    }

    header .logo {
        width: 150px;
    }

    nav ul li {
        margin: 5px 20px;
    }
}

/* Contact section */
.contact-section {
    width: 100%;
    max-width: 600px; /* Limit the width of the form */
    margin: 30px auto; /* Center the form vertically and horizontally */
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow around the form */
    background-color: #ffffff; /* White background for the form */
    border-radius: 8px; /* Rounded corners for the form */
    text-align: center; /* Center text */
}

.form-group {
    margin-bottom: 20px; /* Space between form fields */
}

.form-group label {
    display: block; /* Makes the label take the full width */
    margin-bottom: 5px; /* Space between label and input */
    font-weight: bold; /* Makes the text bold */
}

.form-group input,
.form-group textarea {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px; /* Padding inside input and textarea */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px; /* Rounded corners for inputs and textarea */
}

.btn-submit {
    display: block; /* Block level element to take full width */
    width: 100%; /* Full width */
    padding: 10px 15px; /* Padding inside the button */
    background-color: #007bff; /* Bootstrap primary blue */
    color: #ffffff; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.btn-submit:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
