    .contact-section {
      padding: 70px 20px;
      background: linear-gradient(135deg, #f1f5c3, #FFFFFF);
      font-family: Arial, sans-serif;
    }

    .contact-container {
      max-width: 1300px;
      margin: auto;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-header h1 {
      font-size: 48px;
      color: #2E7D32;
      margin-bottom: 20px;
    }

    .contact-header p {
      font-size: 18px;
      color: #555;
      line-height: 1.8;
    }

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

    .contact-card {
      background: white;
      padding: 35px;
      border-radius: 28px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
    }

    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .contact-card h2 {
      color: #2E7D32;
      margin-bottom: 25px;
      font-size: 30px;
    }

    .contact-item {
      display: flex;
      gap: 15px;
      margin-bottom: 22px;
      align-items: flex-start;
    }

    .contact-item span {
      font-size: 24px;
    }

    .contact-item p {
      margin: 0;
      color: #444;
      line-height: 1.7;
      font-size: 17px;
    }

    .online-text {
      color: #555;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .online-list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .online-list li {
      margin-bottom: 14px;
      color: #444;
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .social-btn {
      display: inline-block;
      text-decoration: none;
      background: linear-gradient(45deg, #43A047, #66BB6A);
      color: white;
      padding: 16px 24px;
      border-radius: 50px;
      font-weight: bold;
      transition: 0.3s;
      text-align: center;
      box-shadow: 0 8px 20px rgba(67, 160, 71, 0.25);
    }

    .social-btn:hover {
      transform: translateY(-3px);
    }

    .facebook-btn {
      background: linear-gradient(45deg, #1877F2, #42A5F5);
    }

    @media(max-width:768px) {

      .contact-header h1 {
        font-size: 34px;
      }

      .contact-card {
        padding: 25px;
      }

      .contact-card h2 {
        font-size: 26px;
      }

    }