* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #1a2a3a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h2 {
    color: #fff;
    font-size: 28px;
}

.logo span {
    color: #e67e22;
}

.logo small {
    color: #aaa;
    font-size: 12px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e67e22;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-accent {
    color: #e67e22;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Philosophy */
.philosophy {
    padding: 80px 0;
    background: #f9f9f9;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.philosophy-icon {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Business */
.business {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.business-item {
    background: #f0f0f0;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.business-item i {
    margin-right: 8px;
    color: #e67e22;
}

.business-item:hover {
    background: #e67e22;
    color: #fff;
    transform: translateY(-3px);
}

/* Stats */
.stats {
    background: #1a2a3a;
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #f9f9f9;
}

.areas-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.areas-list span {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: #e0e0e0;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
}

/* Timeline */
.timeline {
    padding: 60px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    border-left: 3px solid #e67e22;
    padding-left: 20px;
}

.timeline-year {
    font-weight: 700;
    font-size: 20px;
    color: #e67e22;
    min-width: 120px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}

/* Partners */
.partners {
    padding: 60px 0;
}

.partner-group {
    margin-bottom: 50px;
}

.partner-group h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-list span {
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
}

/* Contact */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info .info-item i {
    width: 40px;
    height: 40px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .philosophy-grid, .stats-grid, .team-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .timeline-item {
        flex-direction: column;
    }
    .timeline-year {