* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero {
    /* background: linear-gradient(135deg, #d8bfdf 0%, #f49e6d 95%); */
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(211, 211, 176, 0.5), rgba(255,255,255,0.5)),url('../images/fon1.jpg');
    background-repeat: no-repeat;
    height: auto;

}
@media screen and (min-width : 321px)
{
    .hero
    {
        height: 300px;
    }
}
@media screen and (min-width : 1224px) 
{
    .hero
    {
       height: 400px;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/g0b397097bd0cae5542cb27fb10b7c8ec6a98501ccfb3093ca04ef8400700d4d9323d17e630893e12c374dd00db5d98f0808026153ab91bba5d7089304bd703b6_1280.jpeg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: -25px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 2.2rem;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: #e55656;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.features {
    padding: 40px 0;
    /* background: #f4f4f3; */
    background-image: url('../images/fon4.jpg');
    background-repeat: no-repeat;
    background-size: cover;

}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.feature-card p {
    color: black;
    font-size: 1.15rem;
    line-height: 1.6;
}

.modules {
    padding: 40px 0;
    /* background: #f4f4f3; */
    background-image: url('../images/fon3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.modules-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: 50% 50%;
    gap: 30px;
}

.module-item {
    /* border-radius: 10px; */
    text-align: center;
    /* border-left: 5px solid #667eea; */
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    margin-top: -20px;
}

.module-item:hover {
    /* background: #e9ecef; */
    transform: scale(1.02);
}

.module-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.module-item p {
    color: #666;
    font-size: 0.95rem;
}

.benefits {
    padding: 40px 0;
    /* background: linear-gradient(135deg, #d2842f 0%, #bebec4 85%); */
    color: white;
    background: #f4f4f3;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px;
    /* background: rgba(255,255,255,0.1); */
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-item p {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.stats {
    padding: 60px 0;
    background: #f4f4f3;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.5rem;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.animation-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animation-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
a, u{
    text-decoration: none;
}
.text {
  color: #ea651d;
  font-weight: 600;
  font-size: 3rem;
  font-family: "Montserrat", Tahoma, sans-serif;
  margin-bottom: 5rem;
  text-align: center;
  
}
strong {
  color: #5d2480;
  display: block;
}
p{
    line-height: 1.6rem;
}
h2{
  font-weight: 550;
  font-size: 4.0rem;
  line-height: 5.0rem;
  font-family: "Montserrat", Tahoma, sans-serif;
  color: #242424;
  margin-top: -20px;
}
.white {
    width: 70px; height: 60px; 

}
.icons{
    object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
#block-img{
     position: absolute;

  /* Просто для демонстрации */
  width: 60px;
  height: 60px;
  justify-content: center;
  left: 0px;
  top: 10px;
}
#logo {
  position: relative;
  height: 40px;
  width: 50px;
}