
.bg-gray-900 {
    background-color: #1a202c;
}
.bg-red-700 {
    background-color: #c53030;
}
.hover\:bg-red-800:hover {
    background-color: #9b2c2c;
}

html {
    scroll-behavior: smooth;
}

section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    color: #fff;
}
section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
section a {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}
section a.text-white {
    color: #fff;
    border: 1px solid #fff;
}
section img {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.our-goals-section {
    background-color: #1a202c;
    color: #fff;
    padding: 4rem 0;
}
.our-goals-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.our-goals-section .quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.our-goals-section .quote i {
    color: #718096;
    margin-bottom: 1rem;
}
.our-goals-section .quote blockquote {
    font-size: 1.875rem;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    padding: 0 1rem;
}
.our-goals-section .quote p {
    font-size: 1.125rem;
    margin-top: 1rem;
}

.services-offered-section {
    background-color: #f7fafc;
    padding: 4rem 0;
}
.services-offered-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.services-offered-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 3rem;
}
.services-offered-section .grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.services-offered-section .bg-white {
    background-color: #ffffff;
    border-radius: 0.375rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.services-offered-section img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}
.services-offered-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}
.services-offered-section p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}