body { font-family: 'Montserrat', sans-serif; margin: 0; padding: 0; color: #333; line-height: 1.6; background-color: #f4f4f4; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 20px 0; }
header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5em; font-weight: 700; color: #e67e22; text-decoration: none; }
.nav-links { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 600; font-size: 0.9em; text-transform: uppercase; }
.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero.jpg') no-repeat center center/cover; height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: 60px; }
.hero h1 { font-size: 3.5em; margin-bottom: 10px; }
.hero p { font-size: 1.2em; margin-bottom: 30px; }
.btn { background: #e67e22; color: #fff; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; }
.about { padding: 80px 0; background: #fff; }
.about-content { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-text h2 { color: #e67e22; font-size: 2.5em; margin-bottom: 20px; }
.about-image { flex: 1; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.specialties { padding: 80px 0; text-align: center; }
.specialties h2 { font-size: 2.5em; margin-bottom: 40px; color: #e67e22; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.card img { border-radius: 5px; margin-bottom: 20px; }
footer { background: #222; color: #ccc; text-align: center; padding: 50px 0; }
.footer-links a { color: #e67e22; text-decoration: none; margin: 0 10px; }
.clickable-image { cursor: pointer; }
@media (max-width: 768px) { .about-content { flex-direction: column; } .hero h1 { font-size: 2.5em; } .nav-links { display: none; } }