body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Lora", serif;
    color: #333;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.logo {
    height: 120px;
    width: auto;
}

.brand-name {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 200;
    font-size: 5rem;
    color: #445c7c;
    margin: 0;
    line-height: 120px;
}

.abstract {
    max-width: 800px;
    margin: 2rem auto;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #445c7c;
}

.hero-image {
    width: 80%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.signup-form {
    margin: 3rem auto;
    max-width: 600px;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.signup-form h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 200;
    color: #445c7c;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: "Lora", serif;
    margin-bottom: 1rem;
}

.subscribe-btn {
    background-color: #445c7c;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Lora", serif;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #374b65;
}

.whitepaper-btn {
    display: inline-block;
    background-color: #445c7c;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 6px;
    margin-top: 2rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 200;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whitepaper-btn:hover {
    background-color: #374b65;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.deck-btn {
    display: inline-block;
    background-color: #445c7c;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 6px;
    margin-top: 2rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 200;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.deck-btn:hover {
    background-color: #374b65;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .logo {
        height: 80px;
    }
}

.social-footer {
        background-color: #f8f9fa;
        padding: 2rem 1rem;
        text-align: center;
        border-top: 1px solid #e9ecef;
        width: 100vw;
    }

    .social-container {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .social-icon {
        color: #6c757d;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .social-icon.linkedin:hover {
        color: #0077B5;
    }

    .social-icon.x:hover {
        color: #000000;
    }

    .email-contact {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .email-contact:hover {
        color: #0056b3;
    }

    .copyright {
        font-size: 0.875rem;
        color: #6c757d;
        margin-top: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
        .social-container {
            flex-direction: column;
        }

        .social-links {
            gap: 1.5rem;
        }
    }
    
#disclaimer {
    font-family: "IBM Plex Sans", sans-serif;
    padding-top: 5px;
    font-size: 16px;
    text-decoration: none;
    color: #6c757d;
}

#disclaimer:hover {
    color: #0056b3;
}