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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
.header {
    padding: 48px 0;
    text-align: left;
}

.logo-link {
    display: inline-block;
    width: 300px;
    height: 59px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content */
.main {
    padding-top: 52px;
}

/* Hero Section */
.hero {
    margin-bottom: 70px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
}

.brand-button {
    display: inline-block;
    background-color: #41a300;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 12px;
    cursor: default;
}

.hero-description {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Forte Section */
.forte {
    margin-bottom: 70px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}

.forte-list {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.forte-list p {
    margin-bottom: 8px;
}

.forte-list strong {
    font-weight: 700;
}

.focus-label {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 80px;
}

.tag {
    display: inline-block;
    background-color: #41a300;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 200;
    white-space: nowrap;
}

/* Quote Section */
.quote-section {
    text-align: center;
    margin-bottom: 70px;
}

.separator {
    width: 100px;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 36px;
}

.quote {
    font-size: 25px;
    font-weight: 200;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 36px;
    color: #000000;
}

/* Company Section */
.company {
    margin-bottom: 70px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 32px;
}

.location {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 24px;
}

.company-description,
.company-mission,
.company-location {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 32px;
}

.link {
    color: #345c00;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.link:hover {
    color: #41a300;
}

/* Contact Section */
.contact {
    margin-bottom: 70px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
}

/* Footer */
.footer {
    padding: 30px 0 60px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
}

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

    .hero-description br,
    .company-description br,
    .company-mission br,
    .company-location br {
        display: none;
    }

    .header {
        padding: 30px 0;
    }

    .logo-link {
        width: 200px;
        height: auto;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .quote {
        font-size: 20px;
    }

    .tags-container {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-description,
    .forte-list,
    .focus-label,
    .company-description,
    .company-mission,
    .company-location,
    .location {
        font-size: 16px;
    }

    .quote {
        font-size: 18px;
    }

    .tag,
    .brand-button {
        font-size: 14px;
        padding: 6px 12px;
    }
}
