/* Базовые сбросы и настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Шапка */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.header-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    max-width: 600px;
}

.location {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.location i {
    margin-right: 8px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00bcd4;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0097a7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Основной контент */
.main-content {
    padding-bottom: 3rem;
}

.section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1a237e;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.skills-list {
    list-style: none;
}

.skills-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.skills-list li:before {
    content: '▸';
    color: #00bcd4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Достижения */
.highlights {
    text-align: center;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.achievement-card {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 140px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.achievement-card .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a148c;
    line-height: 1;
}

/* Ссылки */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f1f8ff;
    color: #1a237e;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #d1e3ff;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background-color: #1a237e;
    color: white;
    border-color: #1a237e;
}

/* Призыв к действию */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 5px solid #4caf50;
}

/* Подвал */
.footer {
    background-color: #1a237e;
    color: #b0b0b0;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer a {
    color: #80deea;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .header-text h1 {
        font-size: 2.2rem;
    }
    .contact-buttons {
        justify-content: center;
    }
    .achievements {
        gap: 1rem;
    }
    .achievement-card {
        min-width: 120px;
        padding: 1rem;
    }
    .achievement-card .number {
        font-size: 2rem;
    }
}