* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #111122;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
}

.logo-placeholder {
    color: white;
    font-size: 24px;
    text-align: center;
}

.footer {
    width: 100%;
    padding: 20px;
    background-color: transparent;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.instagram-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.footer-right {
    display: flex;
    align-items: center;
}

.copyright {
    color: white;
    font-size: 14px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .logo {
        max-width: 200px;
        max-height: 200px;
    }
}




