* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1c1c1e; /* вместо #111 */
    background: #fff;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    z-index: 1000;
    transition: opacity 0.3s ease;

}


nav a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.7;
}

nav a:hover {
    opacity: 1;
}

nav a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
}

section {
    padding: 120px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.visual + section {
    padding-top: 160px;
}

#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

p {
    max-width: 720px;
    margin-bottom: 28px;
}


ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

footer {
    padding: 60px;
    text-align: center;
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}

p {
    max-width: 720px;
}

section {
    padding-top: 140px;
    padding-bottom: 140px;
}

strong {
    font-weight: 500;
    color: #000;
}

.visual {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.visual::after {
    content: "";
    position: relative;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
}


.visual-1 {
    background-image: url('../images/photo-1.jpg');
}

.visual-2 {
    background-image: url('../images/photo-2.jpg');
}

