/* minimal.css - Минималистичный стиль */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #404040;
    --accent-color: #666;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
}

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

.site-header {
    padding: 1rem 0 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
}

.logo-text {
    font-weight: 600;
    font-size: 1.25rem;
    color: #666;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.highlight {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--primary-color);
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    margin: 2.5rem auto;
    color: var(--secondary-color);
    max-width: 600px;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 3rem;
    color: #e5e5e5;
    position: absolute;
}

.quote::before {
    top: 0;
    left: 0;
}

.quote::after {
    bottom: -1rem;
    right: 0;
}

.icon-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.icon-item {
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.icon-item:hover {
    border-color: var(--primary-color);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-color);
}

.button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.style-selector {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}