<!-- CSS: Header and Book a Demo Button Styling -->

/* General Reset */
body, html {
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background-color: #18174D;
    font-family: 'Inter', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 110px;
    box-sizing: border-box;
}

/* Logo Styling */
.logo-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    max-height: 30px;
    width: auto;
    vertical-align: middle;
}

/* Book a Demo Button Styling */
.book-demo {
    background-color: #E2E9F8;
    color: #18174D;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    position: relative;
    top: -2px;
}

.book-demo:hover {
    background-color: #F3F7FF;
    color: #0C0989;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-content {
        padding: 8px 12px;
    }

    .logo {
        max-height: 30px;
    }

    .book-demo {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 10px;
    }

    .book-demo {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}
