/* ================================
   BASE / RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Arial", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.container2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Главный блок */

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: faруфвук
    deInUp 1s ease-out;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}


/* ================================
   HEADER
================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #667eea;
    transform: translateY(-3px);
}

.cta-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* ================================
   HERO
================================ */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

/* ================================
   SERVICES
================================ */
.services {
    padding: 80px 20px;
    background: white;
    text-align: center;
}
/* Новый класс для эффектов фигуры */
.services-bg {
    /* Используйте подходящее изображение или градиент для красивого фона */
    background-blend-mode: multiply;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 80px 0;

}

/* Эффект фигуры */
.services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.8;
    filter: blur(10px);
    z-index: -1;
}

/* Цвет текста и ссылок внутри раздела услуг */
.services-bg * {
    color: #000000 !important;
}

/* Темные тени для картинок */
.service-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Прозрачность для заголовков и списка особенностей */
.service-features {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ================================
   PORTFOLIO
================================ */
.portfolio h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ================================
   CONTACT
================================ */

form {
    max-width: 500px;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 1em;
}

button.submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s;
}

button.submit-btn:hover {
    background: #5a6fd8;
}

/* ================================
   FOOTER
================================ */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Общие стили */
* {
    margin: 0;
    padding: 2px;
    box-sizing: border-box;
}
body {
    font-family: "Inter", "Arial", sans-serif;Вы
line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Секция "Почему выбирают нас" */
.why-choose {
    padding: 100px 20px;
    background: #f5f7fa;
}
.why-choose h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.benefit-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #e74c3c;
}
.benefit-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2c3e50;
}
.benefit-card p {
    color: #666;
    font-size: 1em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .why-choose h2 {
        font-size: 2em;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Arial", sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Хедер */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}
.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
nav a:hover {
    color: #667eea;
}
.cta-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.cta-btn:hover {
    background: #c0392b;
}

/* Главный блок */
.hero {
    position: relative;
    height: 750px;
    padding: 150px 20px 100px;
    color: white;
    background-image: url('https://avatars.mds.yandex.net/i?id=e187e3ed788c68373c6c474e46b4c291_l-4968790-images-thumbs&n=13') ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    /* Центрирование через Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center; /* вертикальное центрирование */
    align-items: center; /* горизонтальное центрирование */
    text-align: center; /* для надёжности — выравнивание текста по центру */
}
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px;
}
.btn {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}
.btn:hover {
    transform: translateY(-5px);
}

/* Секция услуг */
.services {
    padding: 80px 20px;

}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}

/* Секция "Почему выбирают нас?" */
.why-choose {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}
.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    z-index: -1;
}
.why-choose h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1em;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    transition: transform 0.3s;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.benefit-card:hover::before {
    transform: scaleX(1.2);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-icon:hover {
    transform: rotate(360deg);
}
.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}
.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 15px 0;
    overflow: hidden;
}
.progress {
    height: 100%;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.5s ease;
}
.progress-label {
    font-size: 0.9em;
    color: #666;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.services {
    padding: 80px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    margin: 20px 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 8px;
    color: #666;
}


body {
    line-height: 1.6;
    color: #333;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Хедер */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav a:hover {
    color: #667eea;
}

.cta-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #c0392b;
}

/* Главный блок */


/* Примеры работ */
.portfolio {
    padding: 80px 20px;
    background: linear-gradient()(blueviolet, darkblue);
    color: black;
}

.portfolio h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Цены */
.prices {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.price-table {
    max-width: 800px;
    margin: 40px auto;
    border-collapse: collapse;
    width: 100%;
}

.price-table th, .price-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
}

.price-table thead th {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
}

.price {
    color: #e74c3c;
    font-weight: bold;
}

/* Форма заказа */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    /* align-items: center; */
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

button.submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s;
}

button.submit-btn:hover {
    background: #5a6fd8;
}

/* Подвал */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    nav ul {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .service-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Шапка */
header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}
nav li {
    margin: 0 15px;
}
nav a {
    color: white;
    text-decoration: none;
}

/* Главный блок */

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}


/* Примеры работ */
portfolio2 {
    padding: 80px 20px;
    background: #ffffff;
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Форма заказа */
.contact {
    padding: 60px 20px;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}
input, textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Подвал */
footer {
    background: #333;
    color: #000000;
    text-align: center;
    padding: 20px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 10px 0;
    }
}

body {
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Хедер */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    color: black;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}


nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #667eea;
    transform: translateY(-3px);
}

.cta-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}


.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}


.pulse {
    animation: pulseAnimation 1s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

/* Секция услуг */
.services {
    padding: 80px 20px;
    background-image: url("images\aaadd.jpg");
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}


.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-15px); /* Больше смещение вверх */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Увеличенный эффект тени */
}
.about {
    padding: 80px 20px;
    background-image: url("images\6ea33d583e222fb048bd7945694f89b3.jpg");

}
.testimonials {
    padding: 80px 0;
    background: url("https://www.ringy.com/hubfs/customer-experience-automation.jpg");
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #dddede;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9em;
}


.about-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    color: black;
}

.about-text {
    padding: 30px;
    flex: 1;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    background-color: #edebeb;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-features {
    margin-top: 20px;
    padding-left: 20px;
}

.about-features li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Примеры работ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }

h4 {
    text
}