/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 5px 20px;
    color: #f0c929;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
    color: goldenrod;
}

.search-container .search-bar {
    padding: 5px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Main Content */
.content-container {
    padding: 100px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Framed Section Styling */
.framed-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Photos Section */
.photos {
    margin-bottom: 40px;
}

.photos h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.photo-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.photo-grid img {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Get in Touch Section */
.get-in-touch-container {
    display: flex;
    padding-left: 15%;
    align-items: flex-start;
    gap: 20px;
}

.contact-details {
    max-width: 400px;
    height: 400px;
    margin-bottom: auto;
}

.contact-image {
    width: 400px;
    height: 400px;
    border-radius: 10px;
}

/* Support Form */
.support-form {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

.support-form form {
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    gap: 5px;
    width: 600px;
    padding: 20px;
}

.support-form input,
.support-form textarea,
.support-form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.support-form button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
/* Footer Styling */
footer {
    background-color: #333;
    box-sizing: border-box;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #bbb;
    /* Subtle separator */
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-left h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: white;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
    color: goldenrod;
}

.footer-center {
    text-align: center;
    color: white;
    font-size: 12px;
    flex-grow: 1;
    font-weight: bold;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 12px;
    color: white;
    font-weight: bold;
}