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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    background-image: url('../images/background-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.coa-label {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
}

.logo-container {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.logo-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
}

#hubspotForm {
    min-height: 100px;
}

/* HubSpot Form Styling Enhancements */
.form-container .hs-form-field {
    margin-bottom: 20px;
}

.form-container .hs-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-container .hs-input:focus {
    outline: none;
    border-color: #000;
}

.form-container .hs-button {
    background-color: #000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-container .hs-button:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .logo-container img {
        max-width: 280px;
    }

    .form-container {
        padding: 30px 24px;
    }

    .form-title {
        font-size: 20px;
    }

    .coa-label {
        top: 15px;
        right: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .logo-container img {
        max-width: 220px;
    }

    .form-container {
        padding: 24px 20px;
    }

    .form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Loading animation */
.loading {
    text-align: center;
    color: #666;
    padding: 20px;
}