 /* Calendly Scoped styles for the buttons and popup */
 .cp-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000;
}

.cp-button {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-block;
}

.cp-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 255, 255, 0.2);
}

.cp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cp-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.cp-popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    margin: auto;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cp-popup-overlay.active .cp-popup-content {
    transform: scale(1);
}

.cp-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.cp-popup-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cp-popup-close {
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cp-popup-close:hover {
    opacity: 0.7;
}

.cp-calendly-container {
    flex-grow: 1;
    width: 100%;
    height: calc(100% - 70px); /* Subtract header height */
}

/* Responsive styles */
@media (max-width: 768px) {
    .cp-button-container {
        bottom: 20px;
        right: 20px;
    }

    .cp-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cp-popup-content {
        width: 95%;
        height: 95vh;
    }

    .cp-popup-title {
        font-size: 20px;
    }
}