/* Базові стилі */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #b9f8db;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Меню навігації */
nav {
    background-color: #34495e;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #1abc9c;
}

/* Основний контент */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Секції */
section {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

section:last-child {
    border-bottom: none;
}

/* Заголовки */
h2 {
    color: #2c3e50;
    border-left: 5px solid #1abc9c;
    padding-left: 10px;
    margin-bottom: 15px;
}

h3 {
    color: #34495e;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Списки */
ul,
ol {
    margin-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Поради та коди */
ul li code {
    background-color: #ecf0f1;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}

ul li strong {
    color: #e74c3c;
}

/* Посилання */
a {
    color: #1abc9c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Медіа для мобільних */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}


.webstart-credit {
    max-width: 100%;
    margin: 40px auto 30px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #333;
    width: fit-content;
    transition: transform 0.3s ease;
}

.webstart-credit:hover {
    transform: scale(1.02);
}

.webstart-credit a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.webstart-credit a:hover {
    color: #000;
}

.webstart-credit .highlight {
    color: red;
    font-weight: 600;
}