/* Reset & Base Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo img {
    max-width: 300px;
    height: auto;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-text .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
}

/* Main Content Styles */
.main-content {
    padding: 80px 0;
}

.company-intro {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.intro-image {
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5a87;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.intro-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text .tagline {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

/* Contact Info Styles */
.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d5a87;
    color: white;
    border-radius: 8px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #475569;
    margin: 2px 0;
}

/* Footer Styles */
.footer {
    background: #1e3a5f;
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header {
        padding: 60px 0;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        height: 300px;
    }
    
    .intro-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 0;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .header-text h1 {
        font-size: 1.6rem;
    }
    
    .header-text .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .intro-text {
        padding: 30px;
    }
    
    .intro-text h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.4rem;
    }
    
    .intro-text {
        padding: 20px;
    }
    
    .intro-text h3 {
        font-size: 1.2rem;
    }
    
    .contact-icon {
        min-width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}