.header {
    background: #dedede;
    padding: 1rem 0;
    border-bottom: 2px solid #ccc;
    position: relative;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.nav {
    display: flex;
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.nav ul li {
    margin: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link.active {
    font-weight: bold;
    color: #4a0678;
}

.nav-link:hover {
    color: #4a0678;
}

/* Кнопка Donate */
.donate-btn {
    background: #ffcc00;
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: #e0b800;
     color: #fff;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: center;
    list-style: none;
    z-index: 2;
    position: relative;
}

.mobile-menu li {
    margin: 1rem 0;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #4a0678;
}


.menu-toggle {
    display: block;
    color: #333;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text {
    position: absolute;
    top: 50%;
    right: 4rem; 
    transform: translateY(-50%); 
    text-align: center; 
    color: #fff;
}

.hero-text h1 {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #3a0563;;
}

.support-btn{
    background: #4a0678;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.stats {
    padding: 2rem 0;
    background-color: #f4f4f9;
    text-align: center;
}

.stats h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a0678; 
}

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

.stat-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    color: #4a0678; /* Цвет текста */
    margin-bottom: 0.5rem;
}

.container-stats-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left; 
    padding: 0 1rem;
}

.container-stats-text blockquote {
    background-color: #ffffff; 
    border-left: 5px solid #4a0678;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.latest-news {
    display: inline-block;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    background: #4a0678;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.latest-news:hover {
    background-color: #3a0563; 
}

.campaign {
    padding: 2rem;
    background-color: #dedede; 
    text-align: center;
}

.campaign-content {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;

    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #dedede; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.campaign-text {
    flex: 2; 
    padding: 0 1rem;
    text-align: left;
}

.campaign-image {
    flex: 1; 
    border: 2px solid #4a0678; 
    border-radius: 8px; 
    overflow: hidden; 
}

.campaign-image img {
    width: 100%; 
    height: auto;
}

.campaign-text h2 {
    color: #4a0678; 
    margin-bottom: 1rem;
}

.campaign-text p {
    font-size: 18px; 
    color: #333;
}

.campaign-date {
    font-size: 14px;
    color: #333;
    margin-bottom: 1rem;
}

.campaign-date a {
    color: #4a0678; 
    text-decoration: none;
}

.campaign-date a:hover {
    text-decoration: underline;
}

.downl-proj {
   display: inline-block;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    background: #4a0678;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.downl-proj:hover {
    background-color: #3a0563;
}

.projects {
    padding: 2rem 1rem;
    background-color: #f4f4f9; 
}

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

.partners {
    padding: 2rem 1rem;
    background-color: #dedede;
}

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

h2 {
    text-align: center;
    color: #4a0678; 
    margin-bottom: 2rem;
    font-size: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
    justify-content: center; 
    align-items: center; 
    margin: 0 auto; 
    max-width: 800px;
}

.partner-item {
    background-color: #ffffff; 
    border: 2px solid #4a0678; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 0.75rem; 
    width: 300px; 
    height: auto; 
}

.partner-item img {
    max-width: 200px; 
    max-height: 200px; 
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-bottom: 2px solid #4a0678; 
}

.partner-item h4 {
    color: #4a0678; 
    margin: 0.75rem 0 0.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.partner-item p {
    color: #333;
    font-size: 14px; 
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr; 
        gap: 1rem; 
    }
    .partner-item {
        width: 100%; 
    }
}

h2 {
    text-align: center;
    color: #4a0678; 
    margin-bottom: 2rem;
    font-size: 2rem;
}

.project-grid {
    display: flex;
    flex-direction: column; 
    gap: 2rem; 
}

.project-item {
    display: flex;
    flex-direction: row; 
    background-color: #ffffff; 
    border: 2px solid #4a0678; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-image {
    flex: 1; 
}

.project-image img {
    width: 100%; 
    height: auto;
}

.project-text {
    flex: 2; 
    padding: 1rem;
    text-align: left;
}

.project-text h3 {
    color: #4a0678; 
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-text p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .project-item {
        flex-direction: column;
    }
}

.statistick {
    position: relative;
    padding: 3rem 1rem;
    color: #fff; 
    background-color: rgba(0, 0, 0, 0.5); 
    background-image: url('/img/sec0.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; 
}

.statistick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dedede;
    opacity: 0.7;
}

.container {
    position: relative;
    z-index: 1;
}

.statistick {
    position: relative;
    padding: 3rem 1rem;
    color: #fff; 
    background-color: rgba(0, 0, 0, 0.5); 
    background-image: url('/img/sec0.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; 
}

.statistick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dedede; 
    opacity: 0.7;
}

.container {
    position: relative;
    z-index: 1;
}

.statistick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
    justify-items: center; 
    align-items: center; 
}

.statistick-text {
    padding: 2rem;
    border: 2px solid #4a0678;
    border-radius: 38px;
    background-color: #7C519A; 
    opacity: 0.9;
    font-size: 1.25rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .statistick {
        padding: 2rem 1rem; 
    }

    .statistick-grid {
        grid-template-columns: 1fr; 
    }

    .statistick-text {
        padding: 1.5rem; 
        font-size: 1rem; 
    }
}

@media screen and (max-width: 480px) {
    .statistick {
        padding: 1.5rem 0.5rem; 
    }

    .statistick-text {
        padding: 1rem; 
        font-size: 0.9rem; 
        border-radius: 20px; 
    }
}

.statistick-quote {
    margin-top: 2rem;
    font-size: 1.7rem;
    font-style: italic;
    color: #4a0678;
    text-align: center;
    display: block; 
    width: 100%;
}

.your-support {
    position: relative;
    padding: 3rem 1rem;
    color: #fff; 
    background-color: rgba(0, 0, 0, 0.5); 
    background-image: url('/img/suplive.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.your-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dedede; 
    opacity: 0.7; 
}

.support-text{
    color: black;
    position: relative;
    font-size: 24px;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

.message {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article {
    background-color: #fff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
    border-color: #4a0678bf;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.article-image img {
    max-width: 400px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

.article-info {
    flex: 1;
}

.article-date {
    font-size: 14px;
    color: #888;
}

.article-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.article-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .article {
        flex-direction: column;
        text-align: center;
    }

    .article-image img {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .article-info {
        margin-top: 10px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-description {
        font-size: 14px;
    }

    .read-more {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 16px;
    }

    .article-description {
        font-size: 12px;
    }
}

@media (min-width: 1006px) {
    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .nav {
        display: flex;
    }
}

@media (max-width: 1006px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

.footer {
    background: #dedede;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    padding: 1rem;
    background: #4444440d;
    border-radius: 8px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4a0678;
}

.footer-link {
    display: block;
    color: #000000;
    text-decoration: none;
    margin: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.3s;
}

.registration-text{
	 color: #000000;
}

.footer-link:hover {
    color: #4a0678;
}

.footer-contact-email {
    color:#000000;
}

@media (max-width: 768px) {
	.hero-img { 
    height: 16rem;
    }
    
	.campaign-content {
    display: block;
    }
    
    .stats-grid {
      position: initial;	
    }
    
	.container-stats-text {
    grid-template-columns: repeat(1, 1fr);
	}
	
    .footer-container {
        grid-template-columns: 1fr; /* Одна колонка на маленьких экранах */
        gap: 1rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-column h4 {
        font-size: 1.2rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}

.why-us {
  padding: 20px;
}

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

.why-us-item {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.why-us-item svg {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.why-us-item h3 {
  font-size: 1.2em;
  margin: 10px 0;
}

.why-us-item p {
  font-size: 1em;
  color: #555;
}

.who-we-are{
	margin: 3rem;
	    font-size: 17px;
	}

.bottom-text {
    margin-top: 40px;
    text-align: center;
    color: #333;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4a0678;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: none; 
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #3a0563;
}

.privacy-policy-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.privacy-policy {
    color: #333;
    margin-bottom: 15px;
}

h1.privacy-policy {
    margin-top: 0;
    padding-bottom: 10px;
    text-align: center;
}

h2.privacy-policy {
    margin-top: 20px;
    padding-top: 10px;
    font-size: 1.3rem;
    text-align: left;
}

ul.privacy-policy.addition {
    padding-left: 20px;
}

ul.privacy-policy.addition li {
    margin-bottom: 5px;
}

a.addition {
    color: #007BFF;
    text-decoration: none;
}

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

.terms-of-use-container {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.terms-of-use {
    color: #333;
    margin-bottom: 15px;
}

h1.terms-of-use {
    text-align: center;
    margin-top: 0;
    padding-bottom: 10px;
}

h2.terms-of-use {
	text-align: left;
	font-size: 1.3rem;
    margin-top: 20px;
    padding-top: 10px;
}

a.terms-link {
    color: #007BFF;
    text-decoration: none;
}

a.terms-link:hover {
    text-decoration: underline;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 10px;
}

.contacts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contacts-heading {
    font-size: 2em;
    color: #4a0678;
    margin-bottom: 20px;
}

.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contacts-info-text {
    text-align: left;
    color: #333;
    font-size: 1em;
    width: 100%;
}

.contacts-form {
    display: grid;
    gap: 15px;
    width: 100%;
    border-radius: 10px;
    background-color: #ffffff;
    border: 2px solid #4a0678;
}

.contacts-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contacts-form-group label {
    font-size: 0.9em;
    color: #4a0678;
    text-align: left;
}

.contacts-form-group input,
.contacts-form-group textarea {
    padding: 10px;
    border: 1px solid #4a0678;
    border-radius: 5px;
    font-size: 1em;
}

.contacts-form-group textarea {
    resize: vertical;
}

.captcha {
    display: flex;
    align-items: center;
}

.contacts-submit-button {
    background-color: #4a0678;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.3s;
}

.contacts-submit-button:hover {
    background-color: #6a0e9c;
}

@media (max-width: 768px) {
	
	.contacts-form-group input,
.contacts-form-group textarea {
    width: 100%;}
}

@media (min-width: 768px) {
    
    .contacts-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .contacts-info-text {
        width: 45%;
    }

    .contacts-form {
        width: 45%;
        padding: 1rem;
    }

    .contacts-submit-button {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .contacts-heading {
        font-size: 2.5em;
    }

    .contacts-form-group input,
    .contacts-form-group textarea {
        font-size: 1.1em;
    }
}

.donation-section {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.donation-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.donation-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.donation-section p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.responsive-support {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.responsive-support .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.responsive-support h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.responsive-support p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  text-align: center;
  padding: 15px;
  transition: box-shadow 0.3s;
}

.gallery-item img:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.gallery-link:hover {
  cursor: pointer;
}

.gallery-item h3 {
  color: #4a0678; 
  font-size: 20px; 
  margin-bottom: 10px; 
}

.gallery-item img {
  width: 253px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 10px;
  display: block;
}

.view-gallery {
  background-color: #4a0678;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.view-gallery:hover {
  background-color: #3a0563;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.my-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.my-gallery-item {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    height: 301px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.my-gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.unique-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.unique-lightbox.hidden {
    display: none;
}

.unique-lightbox .lightbox-content {
    position: relative;
    text-align: center;
}

.unique-lightbox .lightbox-content img {
    max-width: 90%;
    max-height: 90%;
}

button.close-lightbox,
button.lightbox-prev,
button.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1100;
}

button.close-lightbox {
    top: 10px;
    right: 10px;
}

button.lightbox-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

button.lightbox-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width: 1024px) {
    .my-gallery-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .my-gallery-item {
        flex: 0 0 calc(100% - 10px); 
        max-width: calc(100% - 10px);
    }
}

.container-impact{
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;	
	}
	
.about-us {
  background-color: #f4f4f4;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-us h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-us p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.network-item {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 15px;
  transition: box-shadow 0.3s;
}

.network-item-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 15px;
}

.network-item img {
  width: 40%;
  height: auto;
  border-radius: 8px;
  margin-right: 15px;
}

.network-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.network-item p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

.network-item a {
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}

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

.network-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button-wrapper {
  text-align: center; 
}

@media (max-width: 768px) {
  .network-item {
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
  }

  .network-item img {
    width: 100%; 
    max-width: 300px; 
    margin: 0 0 15px; 
  }

  .network-item .text {
    text-align: center; /* Центрирование текста */
  }
}




