/* Scoped Styles for Case Study Section */
.case-study {
    background-color: white;
    color: #333;
    padding: 40px 5%;
    font-family: Arial, sans-serif;
}

.case-container {
    max-width: 1100px;
    margin: auto;
}

.read-time {
    background: #f0f0f0;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.case-study h1 {
    font-size: 2em;
    margin-top: 10px;
    color: #222;
}

.case-study img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.case-study h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #222;
}

.case-study p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.case-study .key-outcomes,
.case-study .deep-dive,
.case-study .solution,
.case-study .results {
    margin-bottom: 30px;
}

.case-study ul {
    list-style: none;
    padding: 0;
}

.case-study ul li {
    background: #f8f8f8;
    padding: 10px;
    margin: 5px 0;
    border-left: 4px solid #0073e6;
}

.case-study .cta {
    font-weight: bold;
    margin-top: 30px;
}

.case-study .cta a {
    color: #0073e6;
    text-decoration: none;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .case-study {
        padding: 30px 3%;
    }

    .case-study h1 {
        font-size: 1.5em;
    }

    .case-study h2 {
        font-size: 1.4em;
    }
}

/*--------------------------------------------------------------
# Case Studies Section Styles
--------------------------------------------------------------*/
.case-studies-section {
    background-color: #f2f2f2;
    text-align: center;
    padding: 40px 20px;
  }
  .case-studies-badge {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
  }
  .case-studies-heading {
    font-size: 2rem;
    margin: 20px 0 10px;
  }
  .case-studies-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: #444;
  }
  .case-studies-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
  }
  .case-studies-container::-webkit-scrollbar {
    height: 6px;
  }
  .case-studies-container::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
  }
  .case-study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: 280px;
    flex-shrink: 0;
    text-align: left;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  .case-study-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .case-study-content {
    padding: 15px;
  }
  .case-study-category {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
  }
  .case-study-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .case-study-link {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
  }


/*--------------------------------------------------------------
# Start Today Section
--------------------------------------------------------------*/
/* Start Today Section */
.start-today-section {
    text-align: center;
    background-color: #f8f9fa; /* Lightest Grey */
    color: black;
    padding: 40px 20px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Small button "Start Today" in a rounded square */
.start-today-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border-radius: 8px; /* Rounded corners */
    white-space: nowrap; /* Keep text in one line */
}

.start-today-btn:hover {
    background-color: #333;
}

/* Main heading */
.start-today-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 12px;
    max-width: 700px;
}

/* Subtext below heading */
.start-today-section p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Blue "Request Access" Button */
.request-access-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.request-access-btn:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .start-today-section h1 {
        font-size: 2rem;
    }

    .start-today-section p {
        font-size: 1rem;
    }

    .request-access-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}