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

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #121212;
    background-color: #ffffff;
}

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

/* Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    font-weight: 300;
    font-size: 1.2rem;
    color: #121212;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #f0f4f8, #e6eaf0);
    padding: 80px 0;
}

.hero-content {
    text-align: left;
    position: relative;
    overflow: visible;
    left: -50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #121212;
    margin: 0;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 200;
    color: #121212;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #333;
}

.hero-logo {
    max-width: 40px;
    height: auto;
    margin: 2rem 0;
    display: block;
    position: relative;
    z-index: 2;
}

#rocket-logo-container {
    position: relative;
    display: inline-block;
    overflow: visible;
    min-height: 200px;
    width: 100%;
}

/* General Section Styles */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.animation-placeholder {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}

/* Philosophy Section */
.philosophy .container {
    text-align: left;
}

.philosophy .section-title {
    text-align: left;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-main {
    margin-bottom: 3rem;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

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

.principle-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.principle-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #121212;
}

.principle-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Approach Section */
.approach .container {
    text-align: right;
}

.approach .section-title {
    text-align: right;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
}

.approach-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #121212;
}

.approach-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services .container {
    text-align: left;
}

.services .section-title {
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.service-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #121212;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technologies Section */
.technologies .container {
    text-align: right;
}

.technologies .section-title {
    text-align: right;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: left;
}
.tech-item h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #121212;
}
.tech-item {
    background-color: transparent;
    padding: 0;
}
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tech-category h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}
.tech-category p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team .section-title {
    text-align: left;
}

.team-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.team-card {
    background-color: transparent;
    padding: 0;
    margin-bottom: 2.5rem;
}
.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.team-card p, .team-card li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.team-card ol {
    padding-left: 20px;
    list-style-position: outside;
}
.team-card li {
    margin-bottom: 0.75rem;
}

/* Explore Section */
.explore .section-title {
    text-align: center;
}

.explore-group {
    margin-bottom: 3rem;
}

.explore-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-grid, .career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.company-card, .career-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
}

.company-card h4, .career-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.address {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.career-card ul {
    list-style: none;
    padding: 0;
}

.career-card li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #f0f4f8, #e6eaf0);
    color: #121212;
    text-align: center;
    padding: 40px 0;
}
.footer p {
    color: #121212;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .team-grid, .about-grid, .career-grid, .approach-grid, .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-principles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 150px;
        margin: 1.5rem auto;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-left {
        font-size: 2rem;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        max-width: 120px;
        margin: 1rem auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-left {
        font-size: 1.8rem;
    }
    
    .main-nav ul {
        gap: 10px;
    }
    
    .main-nav a {
        font-size: 0.8rem;
    }
    
    .principle-item, .approach-item, .company-card, .career-card {
        padding: 20px;
    }
} 