/*
    Plain CSS extracted from Tailwind classes for service pages.
    NOTE: This approach is not recommended as it bypasses the project's Vite/Tailwind build process.
*/

.page-hero {
    background-color: #f3f4f6; /* bg-gray-100 */
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem; /* py-12 */
}

.page-hero .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.page-hero-title {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700; /* font-bold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 1rem; /* mb-4 */
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 1.7rem; /* text-3xl */
        line-height: 2.25rem;
    }
}

.page-hero-subtitle {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem;
    color: #4b5563; /* text-gray-600 */
}

.service-image-section {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.service-image {
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    max-width: 800px;
    margin: 20px auto;
    width: 100%;
    height: auto;
}

.page-main-title {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 1.5rem; /* mb-6 */
    text-align: center;
}

@media (max-width: 768px) {
    .page-main-title {
        font-size: 1.5rem; /* text-2xl */
        line-height: 2rem;
    }
}


.page-intro-text {
    color: #374151; /* text-gray-700 */
    margin-bottom: 2rem; /* mb-8 */
    text-align: center;
    max-width: 56rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
}

.page-grid {
    display: grid;
    gap: 3rem; /* gap-12 */
    margin-bottom: 3rem; /* mb-12 */
}

@media (min-width: 768px) {
    .page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
}

.page-section-title {
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 1rem; /* mb-4 */
    display: flex;
    align-items: center;
}

.page-section-title i {
    margin-right: 0.75rem; /* mr-3 */
}

.page-section-title.justify-center {
    justify-content: center;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem; /* space-y-4 approx */
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem; /* space-y-4 */
}

.icon-list-item .icon {
    margin-right: 1rem; /* mr-4 */
    padding-top: 0.25rem; /* pt-1 */
}

.cta-box {
    margin-top: 3rem; /* mt-12 */
    margin-bottom: 3rem; /* mb-12 */
    text-align: center;
    padding: 2rem; /* p-8 */
    background-color: #eff6ff; /* bg-blue-50 */
    border-radius: 0.5rem; /* rounded-lg */
}

.cta-box .cta-title {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 1rem; /* mb-4 */
}

.cta-box .cta-subtitle {
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
    margin-bottom: 1rem; /* mb-4 */
}

.cta-box .cta-text {
    color: #374151; /* text-gray-700 */
    margin-bottom: 1.5rem; /* mb-6 */
}

.cta-box .cta-button {
    background-color: var(--primary-color); /* bg-blue-500 */
    color: #ffffff; /* text-white */
    font-weight: 700; /* font-bold */
    margin-bottom: 1.5rem; /* mb-6 */
    padding-top: 0.75rem; /* py-3 */
    padding-bottom: 0.75rem;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    border-radius: 0.5rem; /* rounded-lg */
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.cta-box .cta-button:hover {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    ); 
}

.cta-box .cta-button i {
    margin-right: 0.75rem; /* mr-3 */
}
