/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}
.header {
    background: #fff;
    padding: 30px;
    font-size: 24px;
    font-weight: bold;
}
.video-container {
    margin-top: 20px;
}
.video-container video {
    width: 900px;
    height: auto;
}


.video-wrapper {
    position: relative;
    max-width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 60, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 10px;
}

.play-button {
    font-size: 22px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #007BFF, #00C6FF);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}



.info {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.info-block {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}
.info-block img {
    width: 50px;
    height: 50px;
}
.booking, .guarantee {
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.calendly-container {
    margin-top: 20px;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.footer {
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .info {
        flex-direction: column;
        align-items: center;
    }

    .info-block {
        width: 90%;
        margin-bottom: 20px;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }

    .booking, .guarantee {
        width: 95%;
        padding: 15px;
    }

    .calendly-container iframe {
        width: 100%;
        height: 600px;
    }
}
