/* global styling */

.site-header {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    color: #0066cc;
}

.page-container {
    flex: 1;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 24px 16px;
    }
}

html, body {
    height: 100%;
}

body {
    font-family: 
        "Avenir Next",
        "Avenir",
        "Helvetica Neue",
        "Segoe UI",
        "Roboto",
        "Ubuntu",
        "Noto Sans",
        Arial,
        sans-serif;

    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* End Global Styling */

/* Contact Page Styling */

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form {
    flex: 0 0 60%;
}

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

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}

.contact-form button {
    padding: 12px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
}

/* End Contact Page Styling */

/* Footer Styling */

.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* End Footer Styling */

/* Legal & Privacy Styling */

.legal-page {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 20px;
}

.legal-page h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-page h3 {
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p {
    margin-bottom: 14px;
    line-height: 1.6;
}

/* End Legal Privacy Styling */