.company {
    padding: 50px 0;
    background-color: #F3F3F3;
}

.company-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.company-text {
	flex: 1;
}

.company-text h2 {
	font-size: 52px;
    margin-bottom: 20px;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    line-height: 5vw;
    text-transform: uppercase;
    color: #1D4A8E;
}

.company-text p {
	margin-bottom: 20px;
	color: #424146;
}

.company-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-image img {
	width: 100%;
	height: auto;
	display: block;
}

.company-btn {
	display: inline-block;
    background-color: #424146;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    border-top-left-radius: 250px;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    border-bottom-left-radius: 250px;
}

.company-btn:hover {
	background-color:  #035CB0;
}

.company h1 {
    margin-bottom: 20px;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 6vw;
    text-transform: uppercase;
    color: #1D4A8E;
}

.company-page-content p {
    font-size: 20px;
    line-height: 2.0;
    color: #424146;
    text-indent: 25px;
    padding-bottom: 25px;
}

.company ul {
    list-style-type: disc; /* тип маркера: disc, circle, square, none */
    margin: 0;
    margin-left: 40px;
}
  
.company li {
    margin-bottom: 8px;
    line-height: 2.0;
    font-size: 20px;
    line-height: 2.0;
    color: #424146;
}

.company-page-img {
    float: right;
    margin: 0 15px 15px 0;
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .company h2 {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 6.9vw;
        line-height: 6vw;
        text-transform: uppercase;
    }

    .company-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .company-page-img {
        float: none;
        width: 100%;
    }

    .company h1 {
        font-size: 5.9vw;
    }

    .company h2 {
        font-size: 4.9vw;
    }
}

@media (max-width: 576px) {
    .company h2 {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 6.9vw;
        line-height: 6vw;
        text-transform: uppercase;
    }
}

@media (max-width: 480px) {
    .company h2 {
        margin-bottom: 20px;
        font-family: Rubik, sans-serif;
        font-weight: 700;
        font-size: 6.9vw;
        line-height: 6vw;
        text-transform: uppercase;
    }
}