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

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.logo-wrapper {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.logo-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.content-section {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.subtitle {
    font-size: 26px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cta-button {
    background:  #1878FF;
    color: white;
    border: none;
    padding: 25px 100px;
    font-size: 40px;
    font-weight: 600;
    border-radius: 180px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.footer-links {
    position: absolute;
    bottom: 35px;
    right: 3%;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: black;
    gap: 8px;
    font-size: 30px;
    z-index: 3;
}

.footer-link {
    cursor: pointer;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.separator {
    color: #000;
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}
