* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Work Sans';
    color: #e91e63;
    padding-left: 20px;
}

.mentor-text-wrapper h3, p {
    font-family: 'Work Sans';
}

.logo-underline {
    border-bottom: 4px solid #f43f5e; 
    display: inline-block;
    padding-bottom: 0.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #e91e63;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    background: #e91e63;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* Login Section Styles */
.login-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-align: center;
}

.login-section p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.login-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #c2185b;
    text-decoration: underline;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    font-family: 'Work Sans';
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.testimonials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-avatars {
    display: flex;
    margin-right: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #ddd;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Who Can Attend Section */
.who-can-attend {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.audience-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #e91e63;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.audience-card h3 {
    margin: 1rem 0;
    color: #333;
}

.secure-spot {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* KEY TAKEAWAYS SECTION */
.takeaways-section {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-top: 1px solid #e2e8f0;
}

.takeaways-section h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .takeaways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .takeaways-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.takeaway-article {
    background-color: #fef0f8;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.takeaway-icon-wrapper {
    margin-bottom: 0.75rem;
    background-color: #fce4ec;
    border-radius: 9999px;
    display: inline-flex;
    padding: 0.75rem;
}

.takeaway-icon {
    height: 1.5rem;
    width: 1.5rem;
    stroke: #ec4899;
    fill: none;
}

.takeaway-article h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.takeaway-article p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.625;
}

/* MENTOR SECTION */
.mentor-section {
    background-color: #fce4ec;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    position: relative;
}

.mentor-section h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.mentor-section h2 span {
    color: #db2777;
}

.mentor-content {
    display: flex;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 1023px) {
    .mentor-content {
        flex-direction: column;
    }
}

.mentor-img {
    margin-left: auto;
    margin-right: auto;
    width: 16rem;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(244, 63, 94, 0.25);
}

@media (min-width: 1024px) {
    .mentor-img {
        margin-left: 0;
        margin-right: 0;
    }
}

.mentor-text-wrapper {
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .mentor-text-wrapper {
        padding-top: 0;
        text-align: left;
    }
}

.mentor-text-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #db2777;
    margin-bottom: 0.5rem;
}

.mentor-text-wrapper p:nth-of-type(1) {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mentor-text-wrapper p {
    margin-bottom: 0.75rem;
    color: #2d3748;
    line-height: 1.625;
}

/* WHO CAN ATTEND (second section) */
.who-can-attend-2 {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.who-can-attend-2 h2 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.who-can-attend-2 .subtitle {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.audience-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    color: #2d3748;
}

@media (min-width: 768px) {
    .audience-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .audience-grid-2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.audience-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.audience-number-circle {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #db2777;
    color: white;
    text-align: center;
    font-weight: 600;
    line-height: 2rem;
    user-select: none;
}

.audience-item h3 {
    font-weight: 600;
}

.audience-item p {
    font-size: 0.875rem;
    line-height: 1.625;
}

/* SECURE YOUR SPOT & REGISTER */
.secure-spot-section {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .secure-spot-section {
        flex-direction: row;
    }
}

.secure-spot-section h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.secure-spot-section p {
    color: #4b5563;
    max-width: 28rem;
}

.secure-spot-button {
    background-color: #db2777;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.secure-spot-button:hover {
    background-color: #be185d;
}

/* FAQ */
.faq-section {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faq-section h2 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ec4899;
    padding-bottom: 0.5rem;
    color: #db2777;
}

.faq-scroll {
    max-height: 22.5rem;
    overflow: auto;
    padding-right: 0.75rem;
}

/* Custom Scrollbar for FAQ */
.faq-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.faq-scroll::-webkit-scrollbar-thumb {
    background-color: #f43f5e;
    border-radius: 10px;
}

/* FAQ expand/collapse */
.faq-item > input[type='checkbox'] {
    display: none;
}

.faq-item > label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 2px #e2e8f0;
    transition: background 0.3s;
    user-select: none;
    margin-bottom: 0.75rem;
}

.faq-item > label:hover {
    background-color: #fde6ef;
}

.faq-item > label span {
    font-weight: 700;
    font-size: 1.5rem;
    color: #f43f5e;
    transition: transform 0.3s ease;
}

.faq-item > input[type='checkbox']:checked + label > span {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1rem;
    background: white;
    border-radius: 0 0 12px 12px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #444;
}

.faq-item > input[type='checkbox']:checked ~ .faq-content {
    max-height: 200px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Data Analytics Course Section */
.data-analytics-section {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: linear-gradient(to top right, #3b82f6 0%, #60a5fa 100%);
    border-radius: 0.75rem;
    color: white;
}

.data-analytics-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .data-analytics-content {
        flex-direction: row;
    }
}

.data-analytics-image-wrapper {
    border-radius: 0.75rem 0 0 0.75rem;
    background-color: rgba(5, 150, 105, 0.4);
    width: 100%;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .data-analytics-image-wrapper {
        width: 50%;
    }
}

.data-analytics-image {
    width: 100%;
    border-radius: 0.5rem;
}

.data-analytics-text-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: 1.125rem;
    max-width: 32rem;
}

.data-analytics-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-analytics-meta p {
    color: #86efac;
    font-weight: 600;
}

.data-analytics-meta span {
    margin-left: auto;
    background-color: #f97316;
    border-radius: 0.25rem;
    padding: 0.125rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.data-analytics-text-content > p {
    margin-bottom: 1.5rem;
}

.data-analytics-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: #bbf7d0;
    margin-bottom: 1.5rem;
}

.data-analytics-feature-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.data-analytics-feature-item svg {
    width: 1rem;
    height: 1rem;
    color: #86efac;
}

.data-analytics-certification {
    margin-bottom: 1.75rem;
    color: #bbf7d0;
}

.data-analytics-certification img {
    display: inline-block;
    /* width: 50px;
    height: 50px; */
}

.data-analytics-button {
    background-color: #065f46;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    width: max-content;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.data-analytics-button:hover {
    background-color: #047857;
}

.data-analytics-demo-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #bbf7d0;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
    transition: color 0.3s ease;
}

.data-analytics-demo-link:hover {
    color: #4ade80;
}

.data-analytics-demo-link svg {
    width: 1rem;
    height: 1rem;
    display: inline;
}

/* Offline Locations */
.offline-locations-section {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.offline-locations-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.location-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.location-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.location-button svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
}

.location-button.bengaluru {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.location-button.bengaluru:hover {
    background-color: #bfdbfe;
}

.location-button.pune {
    background-color: #ede9fe;
    color: #6d28d9;
}

.location-button.pune:hover {
    background-color: #ddd6fe;
}

.location-button.hyderabad, .location-button.noida {
    background-color: #dcfce7;
    color: #047857;
}

.location-button.hyderabad:hover, .location-button.noida:hover {
    background-color: #a7f3d0;
}

/* Course Overview */
.course-overview-section {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
}

.course-overview-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-overview-content {
    max-width: 56rem;
}

.course-overview-content h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.course-overview-content ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
    color: #2d3748;
}

.course-overview-content li {
    margin-bottom: 0.5rem;
}

.custom-check::before {
    content: "•";
    color: #059669;
    font-weight: 900;
    margin-right: 0.5rem;
}

/* Course Content Preview - REMOVED SCROLLING */
.course-content-preview-section {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 6rem;
}

.course-content-preview-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.course-content-box {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    /* REMOVED: max-height: 25rem; */
    /* REMOVED: overflow-y: auto; */
    line-height: 1.625;
    font-size: 0.875rem;
    color: #1a202c;
}

.course-content-box p {
    margin-bottom: 0.5rem;
}

.course-content-box ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* UPCOMING BATCHES */
.upcoming-batches-section {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
}

.upcoming-batches-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.batches-grid {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .batches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.batch-card {
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.batch-card-top div:nth-child(odd) {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.batch-card-top div:nth-child(even) {
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.batch-date-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.batch-date-time div:last-child {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: right;
}

.batch-signup-button {
    width: 100%;
    background-color: #2d3748;
    color: white;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    margin-bottom: 0.75rem;
    border: none;
    cursor: pointer;
}

.batch-signup-button:hover {
    background-color: #4a5568;
}

.batch-price-info {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.875rem;
}

.batch-price-info div:first-child {
    text-decoration: line-through;
}

.batch-price-info div:last-child {
    font-weight: 600;
    color: #2d3748;
}

.batch-mentor-info {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
  font-family: 'Work Sans';
}

/* Location Map Info */
.location-map-info {
    background-color: #fce4ec;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .location-map-info {
        flex-direction: row;
    }
}

.location-map-info img, .map {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.location-address {
    color: #1a202c;
    max-width: 32rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .location-address {
        max-width: 36rem;
        font-size: 1rem;
    }
}

.get-directions-button {
    background-color: #047857;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .get-directions-button {
        align-self: auto;
    }
}

.get-directions-button:hover {
    background-color: #064e3b;
}

/* Footer */
.footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: #19191a;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-family: 'Work Sans';
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mentor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional utility classes */
.mb-3 {
    margin-bottom: 0.75rem;
}

.text-pink-600 {
    color: #db2777;
}

.text-black {
    color: #000;
}

.font-semibold {
    font-weight: 600;
}

.text-gray-800 {
    color: #2d3748;
}

.leading-relaxed {
    line-height: 1.625;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.text-green-300 {
    color: #86efac;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.text-blue-700 {
    color: #1d4ed8;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}