.web-service-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 50%, #edf2ff 100%);
    overflow: hidden;
    border-radius: 10px;
}

.web-service-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(34, 68, 156, 0.05);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    filter: blur(20px);
}

.web-service-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(76, 111, 220, 0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -120px;
    filter: blur(20px);
}

.web-service-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.web-service-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.web-service-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(34, 68, 156, 0.1);
    color: #22449c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    transition: 0.35s ease;
}

.web-service-subtitle:hover {
    transform: translateY(-2px);
    background: rgba(34, 68, 156, 0.16);
}

.web-service-hero h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #16213e;
    font-weight: 800;
}

.web-service-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6f89;
}

.web-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 55px;
}

.web-service-card {
    position: relative;
    padding: 34px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(34, 68, 156, 0.08);
    overflow: hidden;
    transition: all .45s ease;
    transform-style: preserve-3d;
}

.web-service-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(
        135deg,
        rgba(34, 68, 156, 0.18),
        rgba(76, 111, 220, 0.03)
    );
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: .5s ease;
}

.web-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-120%);
    transition: .8s ease;
}

.web-service-card:hover::after {
    transform: translateX(120%);
}

.web-service-card:hover {
    transform: translateY(-12px) rotateX(4deg);
    box-shadow: 0 20px 60px rgba(34, 68, 156, 0.16),
    0 10px 25px rgba(34, 68, 156, 0.08);
}

.web-service-card:hover::before {
    transform: scale(1.2);
}

.web-service-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #22449c, #4c6fdc);
    color: #fff;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(34, 68, 156, 0.25);
}

.web-service-card:hover .web-service-icon {
    transform: rotate(-8deg) scale(1.1);
    border-radius: 18px;
}

.web-service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 21px;
    margin-bottom: 14px;
    color: #16213e;
    font-weight: 700;
    transition: .3s ease;
}

.web-service-card:hover h3 {
    color: #22449c;
}

.web-service-card p {
    position: relative;
    z-index: 2;
    color: #63718a;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.web-service-info {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border-radius: 32px;
    background: linear-gradient(135deg, #22449c, #162f73);
    color: #fff;
    box-shadow: 0 20px 60px rgba(34, 68, 156, 0.22);
}

.web-service-info::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -90px;
}

.web-service-info h3 {
    font-size: 34px;
    margin-bottom: 18px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.web-service-info p {
    line-height: 1.9;
    opacity: .92;
    position: relative;
    z-index: 2;
}

.web-service-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.web-service-info li {
    position: relative;
    padding: 15px 18px 15px 50px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: 0.35s all ease-in-out;
}

.web-service-info li:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.18);
}

.web-service-info li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 992px) {

    .web-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-service-info {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {

    .web-service-grid {
        grid-template-columns: 1fr;
    }

    .web-service-hero h2 {
        font-size: 34px;
    }

    .web-service-section {
        padding: 55px 15px;
    }

    .web-service-info {
        padding: 28px;
    }

}

.hidden-card {
    opacity: 0;
    transform: translateY(40px);
}

.show-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease,
    transform .7s ease;
}


.training-section {
    position: relative;
    padding: 90px 20px;
    background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 45%, #eef3ff 100%);
    overflow: hidden;
    border-radius: 10px;
}

.training-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.training-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
}

.shape-one {
    width: 420px;
    height: 420px;
    background: rgba(34, 68, 156, 0.08);
    top: -170px;
    right: -140px;
}

.shape-two {
    width: 320px;
    height: 320px;
    background: rgba(76, 111, 220, 0.08);
    bottom: -130px;
    left: -100px;
}

.training-hero {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.training-badge,
.training-title span,
.process-content span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(34, 68, 156, 0.1);
    color: #22449c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.training-hero h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #16213e;
    font-weight: 800;
    margin-bottom: 20px;
}

.training-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #63718a;
}

.training-intro {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    margin-bottom: 60px;
}

.training-intro > div,
.training-highlight {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(34, 68, 156, 0.08);
    transition: 0.4s ease;
}

.training-intro > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(34, 68, 156, 0.14);
}

.training-intro h3,
.training-title h3,
.advantages-block h3,
.addresses-block h3 {
    font-size: 32px;
    color: #16213e;
    font-weight: 800;
    margin-bottom: 16px;
}

.training-intro p,
.info-box p {
    color: #63718a;
    line-height: 1.85;
    margin: 0;
}

.training-highlight {
    background: linear-gradient(135deg, #22449c, #162f73);
    color: #fff;
}

.training-highlight strong {
    display: block;
    font-size: 26px;
    margin-bottom: 14px;
}

.training-highlight span {
    line-height: 1.8;
    opacity: 0.92;
}

.training-title {
    text-align: center;
    margin-bottom: 35px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.training-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(34, 68, 156, 0.08);
}

.training-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 68, 156, 0.18), rgba(76, 111, 220, 0.03));
    top: -60px;
    right: -60px;
    transition: 0.5s ease;
}

.training-card:hover {
    transform: translateY(-12px) rotateX(3deg);
    box-shadow: 0 22px 60px rgba(34, 68, 156, 0.16);
}

.training-card:hover::before {
    transform: scale(1.25);
}

.training-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #22449c, #4c6fdc);
    color: #fff;
    font-size: 30px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.training-card:hover .training-icon {
    transform: rotate(-8deg) scale(1.1);
}

.training-card h4 {
    position: relative;
    z-index: 2;
    color: #16213e;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.training-card p {
    position: relative;
    z-index: 2;
    color: #63718a;
    line-height: 1.75;
    margin: 0;
}

.training-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border-radius: 34px;
    background: linear-gradient(135deg, #22449c, #162f73);
    color: #fff;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(34, 68, 156, 0.24);
}

.process-content span {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.process-content h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
}

.process-content p {
    line-height: 1.9;
    opacity: 0.92;
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-list div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    transition: 0.35s ease;
}

.process-list div:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.18);
}

.process-list strong {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-list p {
    margin: 0;
}

.training-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.info-box {
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(34, 68, 156, 0.08);
    transition: 0.4s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(34, 68, 156, 0.14);
}

.info-box h3 {
    font-size: 24px;
    color: #16213e;
    font-weight: 800;
    margin-bottom: 14px;
}

.advantages-block,
.addresses-block,
.price-block {
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.advantages-grid span {
    position: relative;
    padding: 16px 18px 16px 52px;
    border-radius: 18px;
    background: #fff;
    color: #33415c;
    box-shadow: 0 12px 30px rgba(34, 68, 156, 0.07);
    transition: 0.35s ease;
}

.advantages-grid span:hover {
    transform: translateX(6px);
    background: rgba(34, 68, 156, 0.06);
}

.advantages-grid span::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #22449c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.address-grid div {
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #f5f8ff);
    box-shadow: 0 15px 40px rgba(34, 68, 156, 0.08);
    transition: 0.35s ease;
}

.address-grid div:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 55px rgba(34, 68, 156, 0.15);
}

.address-grid strong {
    display: block;
    color: #22449c;
    font-size: 20px;
    margin-bottom: 8px;
}

.address-grid span {
    color: #63718a;
}

.price-table-wrap {
    overflow-x: auto;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(34, 68, 156, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.price-table th {
    background: linear-gradient(135deg, #22449c, #162f73);
    color: #fff;
    padding: 20px;
    text-align: left;
    font-weight: 700;
}

.price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(34, 68, 156, 0.08);
    color: #33415c;
}

.price-table tbody tr {
    transition: 0.3s ease;
}

.price-table tbody tr:hover {
    background: rgba(34, 68, 156, 0.06);
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
    font-weight: 800;
    color: #22449c;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .training-intro,
    .training-process {
        grid-template-columns: 1fr;
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-info-grid,
    .address-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .training-section {
        padding: 60px 15px;
    }

    .training-hero h2 {
        font-size: 34px;
    }

    .training-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .training-process {
        padding: 28px;
    }
}
