
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}
.scroll-mt-20 {
    scroll-margin-top: 5rem;
}
.bg-primary {
    background: #1a73e8;
}

.text-white {
    color: white;
}
section {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

main {
    margin-top: 72px; /* Navbar height */
    min-height: calc(100vh - 72px);
}

/* Consistent spacing */
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Grid fixes */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Responsive fixes */
@media (max-width: 768px) {
    .md\:flex-row {
        flex-direction: column;
    }
    .md\:w-1\/2 {
        width: 100%;
    }
    section {
        padding: 2rem 0;
    }
}
img {
    max-width: 100%;
    height: auto;
}
/* Improved button transitions */
a, button {
    transition: all 0.3s ease;
}

/* Better focus states */
a:focus, button:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}
h1 {
    font-size: 2.5rem;
    margin-top: 0;
    font-weight: 700;
    line-height: 1.2;
}
p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}
