* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.about-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1, h2 {
    text-align: center;
    color: #FF7400;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.values-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF7400;
}

.back-btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #FF7400;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.back-btn:hover {
    background-color: #ff5722;
}

/* Стилі для соціальних іконок */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    font-size: 0.9em;
    padding: 8px 12px;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.social-icon.fb {
    background-color: #3b5998; /* Facebook синій */
}

.social-icon.ig {
    background-color: #e4405f; /* Instagram рожевий */
}

.social-icon.tw {
    background-color: #1da1f2; /* Twitter блакитний */
}

.social-icon:hover {
    opacity: 0.8;
}
