:root {
    --primary-green: #235f59;
    --text-dark: #235f59;
    --text-muted: #235f59;
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-image {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: 40% 50%;
}

.container {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 1.5rem;
}

.main-logo {
    height: 100px;
    width: auto;
    display: block;
}

/* Content Styles */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Separator Styles */
.separator-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 1rem 0;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--primary-green);
}

/* Contact Styles */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, fill 0.3s ease;
    cursor: pointer;
    display: block;
    color: var(--primary-green);
    fill: var(--primary-green);
}

.info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 600px) {

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.8s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }
