body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}

.hero-bg {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    padding-top: 8rem;
}

@media (min-width: 768px) {
    .hero-bg {
        padding-top: 8rem;
    }
}

.section {
    padding: 4rem 1rem;
}

.hero-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar > div {
    width: 100%;
    background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.navbar a {
    color: white;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar .text-gray-900 {
    color: white !important;
}

.navbar a:hover {
    color: #93c5fd;
}

/* Navigation Styles for all devices */
.navbar .flex.items-center.space-x-4 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.navbar .flex.items-center.space-x-4::-webkit-scrollbar {
    display: none;
}

@media (max-width: 767px) {
    .navbar a {
        padding: 0.5rem;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    line-height: 1.7;
    color: #4b5563;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} 