.container {
    max-width: 1200px;
    margin: 200px auto 0;
    padding: 0 2rem;
}

@media (max-width:768px) {
    .container {
        margin-top: 160px;
    }

}

.main-content {
    background: white;
    margin: -3rem auto 4rem;
    padding: 4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.section {
    margin-bottom: 4rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    color: #458237;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #458237;
    font-weight: 400;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #458237;
}

.info-card h3 {
    color: #458237;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.info-table th {
    background: #f8f9fa;
    color: #458237;
    font-weight: 500;
    width: 30%;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.business-card {
    background: white;
    border: 2px solid #e9ecef;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.business-card:hover {
    border-color: #458237;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 130, 55, 0.15);
}

.business-percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: #EA7317;
    margin-bottom: 0.5rem;
}

.business-title {
    font-size: 1.1rem;
    color: #458237;
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #458237;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #EA7317;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #458237;
}

.timeline-date {
    font-weight: bold;
    color: #458237;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: #555;
    line-height: 1.6;
}

.strength-list {
    list-style: none;
    padding: 0;
}

.strength-item {
    background: #f8f9fa;
    margin: 1rem 0;
    padding: 1.5rem;
    border-left: 4px solid #EA7317;
    position: relative;
}

.strength-item::before {
    content: "✓";
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #EA7317;
    color: white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.strength-item {
    padding-left: 3rem;
}

.contact-section {
    background: #458237;
    color: white;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.contact-button {
    display: inline-block;
    background: #EA7317;
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-button:hover {
    background: #d86414;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 115, 23, 0.3);
}

.performance-chart {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 280px;
    margin: 2rem 0;
    padding: 4rem 2rem 1rem;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.performance-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    margin: 0 1rem;
    position: relative;
}

.bar {
    width: 40px;
    background: #458237;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.bar:hover {
    background: #EA7317;
}

.bar-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.bar-value {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: bold;
    color: #458237;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .company-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-table tr {
        display: grid;
    }

    .info-table tr th {
        width: 100%;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }
}