* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #1a1a1a; display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-size: 1.5rem; font-weight: 700; color: #2563eb; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #4b5563; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #2563eb; }

/* Hero Section */
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 120px 0 80px; text-align: center; }
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; }
.hero .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #ffffff; color: #2563eb; }
.btn-primary:hover { background: #f8fafc; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: #2563eb; }

/* Sections */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; color: #1f2937; }

/* Legal & Page Content */
.page-header { background: #f8fafc; padding: 120px 0 60px; text-align: center; border-bottom: 1px solid #e5e7eb; }
.page-header h1 { font-size: 2.5rem; color: #1f2937; margin-bottom: 1rem; }
.content-section { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.content-section h2 { font-size: 1.8rem; color: #1f2937; margin: 2rem 0 1rem; }
.content-section p { margin-bottom: 1.5rem; color: #4b5563; }
.content-section ul { margin-bottom: 1.5rem; padding-left: 2rem; color: #4b5563; }
.content-section li { margin-bottom: 0.5rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content h3 { font-size: 1.8rem; margin-bottom: 1rem; color: #2563eb; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #2563eb; }
.stat-label { color: #6b7280; font-weight: 500; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border: 1px solid #e5e7eb; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-icon { width: 60px; height: 60px; background: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 1rem; color: #1f2937; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.team-member { text-align: center; }
.team-photo { width: 150px; height: 150px; background: #e5e7eb; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #9ca3af; }
.team-member h4 { margin-bottom: 0.5rem; color: #1f2937; }
.team-member p { color: #6b7280; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { margin-bottom: 1rem; color: #2563eb; }
.contact-item { display: flex; align-items: center; margin-bottom: 1rem; }
.contact-item i { width: 20px; margin-right: 1rem; color: #2563eb; }
.contact-form { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 6px; font-family: inherit; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Footer */
footer { background: #1f2937; color: white; padding: 3rem 0 1rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h4 { margin-bottom: 1rem; color: #ffffff; }
.footer-section p, .footer-section a { color: #9ca3af; text-decoration: none; margin-bottom: 0.5rem; display: block; }
.footer-section a:hover { color: #ffffff; }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid #374151; color: #9ca3af; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero .cta-buttons { flex-direction: column; align-items: center; }
    nav { flex-direction: column; gap: 1rem; }
    .nav-links { justify-content: center; }
}
