/* Reset & Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff; /* bg-white */
    color: #4B5563; /* text-gray-600 (default) */
    min-height: 100vh;
}

a {
    color: #2563EB; /* text-blue-600 */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 72rem; /* max-w-6xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
    position: relative;
    text-align: center;
}

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

.hero p {
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    color: #4B5563; /* text-gray-600 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem; /* bottom-10 */
}

.scroll-indicator span,
.scroll-indicator svg,
.icon-placeholder svg {
    display: inline-block;
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
    stroke: #9CA3AF; /* text-gray-400 - Use stroke for SVG color */
    stroke-width: 1.5; /* Adjust stroke width for visibility */
    fill: none; /* Ensure icons are not filled */
}

.icon-placeholder svg {
    stroke: #2563EB; /* text-blue-600 - Use stroke for SVG color */
}

.scroll-indicator svg {
    animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

/* Services Section */
.services {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
    background-color: #F9FAFB; /* bg-gray-50 */
}

.services h2 {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
    color: #111827; /* text-gray-900 */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* grid-cols-1 */
    gap: 2rem; /* gap-8 */
}

.service-item {
    background-color: #fff; /* bg-white */
    padding: 1.5rem; /* p-6 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: box-shadow 0.2s ease-in-out; /* transition-shadow */
}

.service-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* hover:shadow-md */
}

.service-item .icon-placeholder {
    font-size: 1.5rem; /* Simple placeholder size */
    margin-bottom: 1rem; /* mb-4 */
    height: 2rem; /* Match icon size */
    width: 2rem; /* Match icon size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item h3 {
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem; /* mb-2 */
    color: #111827; /* text-gray-900 */
}

.service-item p {
    color: #4B5563; /* text-gray-600 */
}

/* Contact Section */
.contact {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
    text-align: center;
}

.contact .container {
     max-width: 36rem; /* max-w-xl */
}

.contact h2 {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    text-align: center;
    margin-bottom: 2rem; /* mb-8 */
    color: #111827; /* text-gray-900 */
}

.contact p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding-top: 2rem; /* py-8 */
    padding-bottom: 2rem; /* py-8 */
    background-color: #F9FAFB; /* bg-gray-50 */
    text-align: center;
    color: #4B5563; /* text-gray-600 */
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) { /* md breakpoint */
    .hero h1 {
        font-size: 3.75rem; /* md:text-6xl */
        line-height: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
} 