/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f4f7;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    text-align: center;
}

.container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Headline Styles */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
    padding: 15px;
    border: 3px solid #e74c3c;
    border-radius: 8px;
    background-color: #fef9f9;
    line-height: 1.2;
}

/* Subheadline Styles */
.subheadline {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.highlight {
    color: #e74c3c;
    font-weight: 700;
}

.subheadline span.highlight-success {
    color: #27ae60;
    font-weight: 700;
}

/* Video Call to Action Styles */
.cta-text {
    font-size: 24px; /* Increased font size */
    font-weight: bold;
    color: #e74c3c;
    margin: 20px 0;
    line-height: 1.4;
}

/* Video Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

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

.play-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    width: 80%;
    text-align: center;
}

/* Steps Styles */
.steps-container {
    margin: 20px 0;
    text-align: center; /* Center the text */
}

.steps-container h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #2980b9;
    margin-bottom: 20px;
}

.steps-container ol {
    padding: 0;
    list-style: none;
    font-size: 16px;
    color: #000; /* Black text color */
    margin: 0 auto;
    display: inline-block;
    text-align: left; /* Keep text alignment within list items */
}

.steps-container ol li {
    margin-bottom: 15px;
    font-weight: bold; /* Bold text */
    text-align: center; /* Center align text within list item */
}

.steps-container ol li::before {
    content: '✔';
    color: #e74c3c;
    font-size: 20px;
    margin-right: 10px;
}

/* Form Styles */
.form-container {
    margin-top: 20px;
    text-align: center; /* Center the form */
}

.form-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"] {
    width: calc(100% - 30px);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
    color: #34495e;
}

.form-container input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

/* Button Styles */
.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #219150;
}

/* Feedback Section Styles */
.feedback-container {
    margin-top: 30px;
    text-align: center; /* Center the feedback */
}

.feedback {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Make feedback block inline to center */
    max-width: 500px; /* Limit width for better readability */
}

.feedback .stars {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 10px;
}

.feedback .client-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feedback p {
    font-size: 16px;
    color: #34495e;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .video-container {
        max-width: 100%;
        margin: 0;
        height: auto;
        box-shadow: none;
    }

    .video-container video {
        height: auto;
    }

    .play-text {
        font-size: 18px;
    }

    .steps-container h3 {
        font-size: 16px;
    }

    .steps-container ol {
        font-size: 14px;
    }

    .form-container input[type="text"],
    .form-container input[type="tel"],
    .submit-button {
        padding: 12px;
        font-size: 14px;
    }
}
