/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logo link styling - убираем подчеркивание */
.header__logo a {
    text-decoration: none;
    color: inherit;
}

.header__logo a:hover {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section__title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a365d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn--primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn--outline:hover {
    background: #2563eb;
    color: white;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.header__contacts {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__phone,
.header__email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.header__phone:hover,
.header__email:hover {
    color: #1d4ed8;
}

.header__schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.header__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.header__logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 4px;
}

.header__logo p {
    display: none;
}

/* Navigation */
.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #2563eb;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
}

.slide.active {
    opacity: 1;
}

.slide__content {
    flex: 1;
    z-index: 2;
    color: white;
}

.slide__content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide__subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
}

.slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.slider__controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider__btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider__btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Catalog Section */
.catalog {
    padding: 80px 0;
    background: #f8fafc;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.catalog__item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.catalog__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.catalog__image {
    height: 200px;
    overflow: hidden;
}

.catalog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog__item:hover .catalog__image img {
    transform: scale(1.05);
}

.catalog__content {
    padding: 24px;
    text-align: center;
}

.catalog__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a365d;
    line-height: 1.4;
}

.catalog__footer {
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.features__column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 24px;
}

.features__list {
    list-style: none;
    margin-bottom: 30px;
}

.features__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features__list i {
    color: #2563eb;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #2563eb;
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.contact-item strong {
    display: block;
    color: #1a365d;
    margin-bottom: 4px;
}

.contact-item span,
.contact-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefits__item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefits__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
}

.benefits__icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefits__item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.benefits__item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.benefits__icon i {
    font-size: 2rem;
    color: white;
}

/* Certificates Section */
.certificates {
    padding: 80px 0;
    background: white;
}

.certificates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.certificate__item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate__item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.certificate__item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.review__item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review__item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review__item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about__content p {
    margin-bottom: 24px;
    color: #374151;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.newsletter__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.newsletter__content p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter__form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__cities {
    display: flex;
    gap: 30px;
}

.cities__column ul {
    list-style: none;
}

.cities__column li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.footer__cities a {
    color: #ffffff;
    text-decoration: none;
}

.footer__cities a:hover {
    text-decoration: underline;
}

.footer__map-link {
    color: #60a5fa;
    text-decoration: none;
    margin-top: 16px;
    display: inline-block;
}

.footer__map-link:hover {
    text-decoration: underline;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__contact strong {
    color: #ffffff;
}

.footer__contact span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer__contact a {
    color: #60a5fa;
    text-decoration: none;
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer__social {
    margin-top: 12px;
}

.footer__social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal__content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal__close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: #374151;
}

.modal h2 {
    margin-bottom: 24px;
    color: #1a365d;
    font-size: 1.5rem;
}

.modal p {
    margin-bottom: 24px;
    color: #6b7280;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__group label {
    font-weight: 500;
    color: #374151;
}

.form__group input,
.form__group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .header__top {
        display: none;
    }
    
    .header__contacts {
        display: none;
    }
    
    .header__main {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav__list.active {
        left: 0;
    }
    
    .slide__content h2 {
        font-size: 2rem;
    }
    
    .slide__subtitle {
        font-size: 1.1rem;
    }
    
    .slide__image {
        display: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .catalog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .certificates__grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .reviews__grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .newsletter__form {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__cities {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal__content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }
}

/* Company Pages Styles */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    margin: 0 8px;
    opacity: 0.6;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contacts-main {
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-office {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-card__header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-card__header i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

.contact-card__header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a365d;
}

.location {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Contact Page - Quick Form refinements */
.contact-form-card {
	background: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.quick-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.quick-contact-form .form__group label {
	color: #1f2937;
	font-weight: 600;
}

.quick-contact-form .form__group input,
.quick-contact-form .form__group textarea {
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 14px;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact-form .form__group input:focus,
.quick-contact-form .form__group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.quick-contact-form .btn {
	align-self: flex-start;
	background: #2563eb;
	color: #ffffff;
	padding: 12px 18px;
	border-radius: 10px;
}

.quick-contact-form .btn i { margin-right: 8px; }

.quick-contact-form .btn:hover {
	background: #1d4ed8;
}

/* Branches */
.branches {
    padding: 80px 0;
    background: #f8fafc;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.branch-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.branch-header h3 {
    color: #1a365d;
    margin: 0;
}

.branch-type {
    background: #e2e8f0;
    color: #64748b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.branch-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.9rem;
}

.branch-info i {
    width: 16px;
    color: #2563eb;
}

/* Contact Services */
.contact-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-info {
    text-align: center;
    padding: 30px;
}

.service-info i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.service-info p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 80px;
    background: #2563eb;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 80px;
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 0 30px;
}

.timeline-content h3 {
    color: #1a365d;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Company Today */
.company-today {
    padding: 80px 0;
}

.today-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.today-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.today-text p {
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
}

.today-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Advantages */
.advantages {
    padding: 80px 0;
    background: #f8fafc;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Navigation active state */
.nav__link--active {
    color: #2563eb;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .today-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .today-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid,
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-hero {
    padding: 60px 0;
    background: #f8fafc;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.services-intro p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

.services-main {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    flex-shrink: 0;
}

.service-card.featured .service-features li::before {
    color: rgba(255, 255, 255, 0.8);
}

.additional-services {
    padding: 80px 0;
    background: #f8fafc;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.additional-icon i {
    font-size: 1.5rem;
    color: white;
}

.additional-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.additional-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Certificates Page Styles */
.certificates-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certificates-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.certificates-intro p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

.certificates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.certificate__item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.certificate__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.certificate__info {
    padding: 20px;
}

.certificate__info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a365d;
}

.certificate__info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.quality-info {
    padding: 80px 0;
    background: #f8fafc;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quality-icon i {
    font-size: 1.8rem;
    color: white;
}

.quality-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.quality-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.standards {
    padding: 80px 0;
}

.standards-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.standards-text h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.standards-list {
    list-style: none;
}

.standards-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.standards-list li::before {
    content: "📋";
    position: absolute;
    left: 0;
    top: 0;
}

.standards-benefits {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #374151;
}

.benefit-item i {
    color: #2563eb;
    flex-shrink: 0;
}

/* Form Select Styles */
select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
    width: 100%;
}

select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certificates__grid {
        grid-template-columns: 1fr;
    }
    
    .standards-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header__logo h1 {
        font-size: 1.5rem;
    }
    
    .slide__content h2 {
        font-size: 1.5rem;
    }
    
    .slide__subtitle {
        font-size: 1rem;
    }
    
    .hero {
        height: 350px;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .today-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-intro h2,
    .certificates-intro h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

/* News Page Styles */
.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.news-item.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-item.featured .news-image {
    height: auto;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.news-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.news-category {
    background: #2563eb;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.news-item h2,
.news-item h3 {
    color: #1a365d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-item h2 {
    font-size: 1.5rem;
}

.news-item h3 {
    font-size: 1.2rem;
}

.news-item p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form-group {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form-group .btn {
    background: white;
    color: #2563eb;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-group .btn:hover {
    background: #f1f5f9;
}

/* Delivery Page Styles */
.delivery-options {
    padding: 80px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.delivery-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.delivery-icon i {
    font-size: 2rem;
    color: white;
}

.delivery-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.delivery-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.delivery-card ul {
    list-style: none;
    text-align: left;
}

.delivery-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.delivery-card li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    flex-shrink: 0;
}

.delivery-terms {
    padding: 80px 0;
    background: #f8fafc;
}

.terms-table {
    overflow-x: auto;
    margin-bottom: 40px;
}

.terms-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-table th,
.terms-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.terms-table th {
    background: #1a365d;
    color: white;
    font-weight: 600;
}

.terms-table tr:last-child td {
    border-bottom: none;
}

.terms-table tr:nth-child(even) {
    background: #f8fafc;
}

.terms-notes {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-notes h3 {
    color: #1a365d;
    margin-bottom: 20px;
}

.terms-notes ul {
    list-style: none;
}

.terms-notes li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.terms-notes li::before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.payment-methods {
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.payment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.payment-icon i {
    font-size: 1.8rem;
    color: white;
}

.payment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.payment-card p {
    color: #6b7280;
    margin-bottom: 15px;
}

.payment-card ul {
    list-style: none;
    text-align: left;
}

.payment-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.payment-card li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    flex-shrink: 0;
}

.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #1a365d;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #6b7280;
    line-height: 1.6;
    display: none;
}

/* Cooperation Page Styles */
.partnership-types {
    padding: 80px 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.partnership-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.partnership-icon i {
    font-size: 2rem;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partnership-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
    font-weight: 600;
    line-height: 1.3;
}

.partnership-card p {
    color: #6b7280;
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.partnership-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.partnership-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.partnership-card li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #1a365d;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.requirements {
    padding: 80px 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.requirements-text h3 {
    color: #1a365d;
    margin-bottom: 20px;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #374151;
}

.requirements-list li::before {
    content: "→";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.requirements-steps h3 {
    color: #1a365d;
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a365d;
    margin-bottom: 5px;
}

.step-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.success-stories {
    padding: 80px 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    color: #1a365d;
    margin-bottom: 10px;
}

.story-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.story-stats span {
    background: #e2e8f0;
    color: #64748b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .news-item.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-group {
        flex-direction: column;
    }
    
    .terms-table {
        font-size: 0.9rem;
    }
    
    .terms-table th,
    .terms-table td {
        padding: 15px 10px;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step {
        align-items: center;
    }
}

/* Catalog Page Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.catalog__item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.filter-tab {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.filter-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.catalog-filters h2 {
    margin-bottom: 24px;
    color: #1a365d;
    font-size: 1.5rem;
}

.catalog__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.catalog__features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.catalog__features i {
    color: #2563eb;
    font-size: 0.8rem;
}

.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    margin: 0 8px;
    opacity: 0.6;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-page {
    padding: 80px 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn--outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn--outline:hover {
    background: white;
    color: #2563eb;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}