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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
}



h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

main {
    max-width: 700px;
    margin: 0 auto;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
}

.about p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: block;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

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

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2.2rem;
        letter-spacing: -0.03em;
    }
    
    h1::after {
        width: 40px;
        height: 2px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
