* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav h1 {
    color: #0070f3;
    font-size: 1.8rem;
    font-weight: 700;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #0070f3;
}
.hero {
    background: linear-gradient(135deg, #0070f3 0%, #0056b3 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0070f3;
    text-align: center;
}
.intro {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
    text-align: center;
}
.intro h2 {
    color: #0070f3;
    margin-bottom: 1rem;
}
.services {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.about-grid ul {
    list-style: none;
    padding-left: 0;
}
.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card h3 {
    color: #0070f3;
    margin-bottom: 1rem;
}
.team {
    margin-bottom: 4rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.employee-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}
.employee-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.employee-card h3 {
    color: #0070f3;
    margin-bottom: 0.5rem;
}
.employee-card p {
    color: #666;
}
.achievements {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}
.achievements h2 {
    color: #0070f3;
    margin-bottom: 2rem;
    text-align: center;
}
.achievements ul {
    list-style: none;
    padding: 0;
}
.achievements li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.achievements li:last-child {
    border-bottom: none;
}
.profile {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.profile h2 {
    color: #0070f3;
    margin-bottom: 0.5rem;
}
.profile p {
    color: #666;
    font-size: 1.1rem;
}
.bio {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.bio h3 {
    color: #0070f3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.skills {
    margin-top: 2rem;
}
.skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.skills li {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
}
.projects ul {
    padding-left: 1.5rem;
}
.projects li {
    margin-bottom: 0.5rem;
}
footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}
footer p {
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple mobile, could add hamburger */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-grid, .team-grid, .about-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .profile, .bio {
        padding: 2rem;
    }
    .skills ul {
        justify-content: center;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid, .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}</content>
<parameter name="filePath">/home/djul/git/github.com/cogipdotorg/website/style.css