:root {
  --primary-green: #2d6a2d;
  --secondary-green: #5a9e5a;
  --light-green: #a7d7a7;
  --pale-green: #d4edda;
  --accent-gold: #f4b62d;
  --dark-text: #2f4f4f;
  --light-text: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
  box-sizing: border-box;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--pale-green),
    var(--light-green),
    var(--secondary-green),
    var(--primary-green)
  );
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--dark-text);
  line-height: 1.6;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

/* Header/Navigation */
.generally .flex-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-green), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.logo:hover {
  transform: scale(1.05);
}

.generally .links {
  display: flex;
  gap: 30px;
}

.links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.links a:hover::after {
  width: 100%;
}

.links a:hover {
  color: var(--primary-green);
}

/* Hero Section */
.container-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 100vh;
  padding: 100px 5% 50px;
}

.section-1 {
  width: 50%;
  padding-right: 5%;
  z-index: 2;
}

.section-2 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-2 img {
  width: 80%;
  max-width: 450px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite,
    border-radius-morph 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes border-radius-morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.text-1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-text);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  line-height: 1.1;
  animation: slide-up 1s ease-out forwards;
}

/* .text {
  font-size: 1.2rem;
  color: var(--light-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  opacity: 0.9;
  animation: slide-up 1.2s ease-out forwards;
} */

.tikla {
  display: inline-block;
  background-color: var(--light-text);
  color: var(--primary-green);
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: yukariGel 1s ease-out forwards;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tikla::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.4s ease;
  z-index: -1;
}

.tikla:hover {
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tikla:hover::before {
  width: 100%;
}

.container-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Features Section */
.section-2 .contain {
  padding: 100px 5%;
  text-align: center;
}

.section-2 .contain h2 {
  font-size: 2.8rem;
  color: var(--light-text);
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}

.section-2 .contain h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-2 .contain-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-2 .contain-2 > div {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  padding: 50px 35px;
  border-radius: 25px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* İçeriği merkeze hizaladık */
  min-height: 350px;
  text-align: center; /* Metni ortala */
}

.section-2 .contain-2 > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gold);
  transition: height 0.3s ease;
  z-index: -1;
}

.section-2 .contain-2 > div:hover::before {
  height: 100%;
}

.section-2 .contain-2 > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: var(--light-text);
}

/* İkon stili */
.contain-2 > div i {
  font-size: 2rem; /* İkon boyutunu büyüttük */
  margin-bottom: 30px;
  color: var(--accent-gold);
  transition: all 0.3s ease;
  display: block;
}

/* Metin stili */
.contain-2 > div {
  font-size: 1.2rem;
  line-height: 1.7;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-2 .contain-2 > div:hover i {
  transform: scale(1.2);
  color: var(--light-text);
}

.two-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 100%;
  margin: 100px auto;
  padding: 0 5%;
  flex-wrap: wrap;
}

.two-container h1{
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 3rem;
}

.card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 40px;
  display: flex;
  align-items: stretch;
}

.card-container .card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.card-container .card .image-card{
  width: 350px;
  height: 300px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-container .card h2{
  text-align: center;
}


.card-container .card-2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.card-container .card-2 h2{
  text-align: center;
}

.card-container .card-2 .image-card-2{
  width: 350px;
  height: 300px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-container .card-3{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.card-container .card-3 h2{
  text-align: center;
}

.card-container .card-3 .image-card-3{
  width: 350px;
  height: 300px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



.contain-3 {
  position: relative;
}

.contain-3 .card,
.contain-3 .card-2,
.contain-3 .card-3 {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  padding: 50px 40px;
  border-radius: 20px;
  width: 100%;
  height: 100%; 
  min-height: auto; 
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.contain-3 .card-2 {
  background: var(--primary-green);
  color: var(--light-text);
}

.contain-3 .card h2,
.contain-3 .card-2 h2
.contain-3 .card-3 h2 {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contain-3 .card-2 h2 {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--light-text);
}

.contain-3 .card p,
.contain-3 .card-2 p
.contain-3 .card-3 p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  z-index: 2; 
}

.contain-3 .card::before,
.contain-3 .card-2::before
.contain-3 .card-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gold);
  transition: all 0.4s ease;
  z-index: 1;
}

.contain-3 .card:hover::before,
.contain-3 .card-2:hover::before,
.contain-3 .card-3:hover::before  {
  height: 100%;
  opacity: 0.2;
}

.contain-3 .card:hover,
.contain-3 .card-2:hover,
.contain-3 .card-3:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contain-3 .card {
  color: var(--dark-text);
}

.contain-3 .card:hover {
  background: var(--light-green);
  color: var(--dark-text);
}

.contain-3 .card-2 {
  color: var(--light-text);
}

.contain-3 .card-2:hover {
  background: var(--accent-gold);
  color: var(--light-text);
}

.contain-3 .card-3:hover {
  background: var(--light-green);
  color: var(--dark-text);
}

.a {
  position: relative;
  z-index: 2;
}

.a {
  background: var(--light-text);
  color: var(--primary-green);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 30px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.4s ease;
  z-index: -1;
}

.a:hover {
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.a:hover::before {
  width: 100%;
}

/* Testimonials Section */
.cards,
.cardss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 5%;
  perspective: 1000px;
}

.card1,
.card2,
.card3,
.card4,
.card5,
.card6 {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  width: 100%;
  max-width: 700px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card2,
.card5 {
  margin-left: auto;
  margin-right: 10%;
}

.card1,
.card3,
.card4,
.card6 {
  margin-right: auto;
  margin-left: 10%;
}

.card1:hover,
.card3:hover {
  transform: rotateY(15deg) translateY(-10px);
}

.card2:hover,
.card5:hover {
  transform: rotateY(-15deg) translateY(-10px);
}

.card4:hover,
.card6:hover {
  transform: rotateX(15deg) translateY(-10px);
}

.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img,
.card6 img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 30px;
  border: 5px solid var(--accent-gold);
  transition: all 0.4s ease;
}

.card1:hover img,
.card2:hover img,
.card3:hover img,
.card4:hover img,
.card5:hover img,
.card6:hover img {
  transform: scale(1.1);
  border-color: var(--primary-green);
}

.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.container-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  background: transparent;
}

.container-6 .main-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.container-6 .section-6 {
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(47, 79, 79, 0.2), 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: lightslategray;
}

.container-6 .section-6 p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  font-style: italic;
  text-align: center;
  padding: 20px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.container-6 .section-6 h1 {
  font-size: 1.85rem;
  color: white;
  font-style: italic;
  padding: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.container-6 .section-6 .information {
  border: none;
  background-color: var(--light-text);
  color: var(--primary-green);
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container-6 .section-6 .information:hover {
  background-color: var(--accent-gold);
  color: var(--light-text);
}

.container-6 .section-6 p::before {
  top: -10px;
  left: 10px;
}

.container-6 .section-6 p::after {
  bottom: -30px;
  right: 10px;
}

.container-6 .section-6:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(47, 79, 79, 0.3), 0 5px 15px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.container-6 .section-6:hover,
.container-6 .section-6:hover * {
  color: #000000;
}

.container-6 img {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 5px solid var(--accent-gold);
}

.container-6 img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2a7f62;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes slide-up {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes yukariGel {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-yours{
  color: var(--light-text);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  color: wheat;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  width: 100%; 
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-column li {
  margin-bottom: 10px;
  text-align: left; 
}

.footer-final {
  margin-top: 100px;
  width: 100%;
  text-align: center; 
}
.footer-column h3 {
  margin-bottom: 20px; 
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-column li {
  margin-bottom: 10px;
  text-align: center;
}

.footer-column a{
  text-decoration: none;
}

.footer-column a:hover{
  cursor: pointer;
}



@media (max-width: 1200px) {
  .container-1 {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }

  .section-1,
  .section-2 {
    width: 100%;
    padding: 0;
  }

  .section-2 {
    margin-top: 50px;
  }

  .section-2 img {
    max-width: 350px;
  }

  .two-container {
    flex-direction: column;
    align-items: center;
  }


  .card2,
  .card5 {
    margin-right: auto;
    transform: none !important;
  }

  .card2:hover,
  .card5:hover {
    transform: rotateY(-15deg) translateY(-10px) !important;
  }

  .container-2 .contain-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .container-3 .card-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .text-1 {
    font-size: 2.5rem;
  }

  .text {
    font-size: 1rem;
  }

  .container-2 .contain-1 h2,
  .features .contain h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .container-2 .contain-2,
  .features .contain-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .container-2 .contain-2 > div,
  .features .contain-2 > div {
    min-height: 180px;
    padding: 20px;
  }

  .card1,
  .card2,
  .card3,
  .card4,
  .card5,
  .card6 {
    flex-direction: column;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .card1 img,
  .card2 img,
  .card3 img,
  .card4 img,
  .card5 img,
  .card6 img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .container-6 img {
    width: 200px;
    height: 200px;
  }

  .contain-3 .card,
  .contain-3 .card-2 {
    padding: 30px 20px;
    min-height: 500px;
  }

  .two-container {
    gap: 20px;
    padding: 0 3%;
  }

  .card-container {
    flex-direction: column; /* Mobilde kartları alt alta sırala */
    gap: 20px;
    width: 100%;
  }

  .contain-3 .card,
  .contain-3 .card-2 {
    width: 80%; /* Kartları tam genişlik yap */
    max-width: 100%; /* Maksimum genişlik kısıtlamasını kaldır */
    min-height: auto; /* Sabit yükseklik kısıtlamasını kaldır */
    padding: 25px 20px;
    margin-bottom: 0;
  }

  .contain-3 .card-2 h2 {
    font-size: 2rem; /* Başlık boyutunu küçült */
    line-height: 1.2;
  }

  .footer-container {
    padding: 30px 15px;
  }
  
  .footer-header {
    margin-bottom: 40px;
  }
  
  .footer-columns {
    gap: 30px;
    justify-content: space-between;
  }
  
  .footer-column {
    min-width: 200px;
    max-width: 45%;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-final {
    margin-top: 70px;
  }
}

@media (max-width: 482px) {
  .flex-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .logo span {
    font-size: 1.4rem;
  }
  
  .links {
    width: 100%;
    justify-content: space-around;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .links a {
    font-size: 0.7rem;
    transform: translateY(-30%);
    text-align: center;
    flex: 1;
  }

  .tikla {
    padding: 12px 25px;
  }

  .container-2 .contain-1 h2,
  .features .contain h2 {
    font-size: 2rem;
  }

  .container-2 .contain-2 > div i,
  .features .contain-2 > div i {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .container-3 {
    padding: 0 10px;
    width: 100%;
    overflow: hidden;
  }
  
  /* Blog başlığı */
  .two-container > div > h1 {
    font-size: 1.8rem;
    margin: 20px 0;
    padding: 0 10px;
    text-align: center;
  }

  /* Kart container */
  .container-3 .card-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 5px;
    width: 100%;
  }

  /* Tüm kartlar */
  .contain-3 .card,
  .contain-3 .card-2,
  .contain-3 .card-3 {
    width: 95%;
    max-width: 95%;
    padding: 20px 15px;
    margin: 0 auto 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Kart başlıkları */
  .contain-3 .card h2,
  .contain-3 .card-2 h2,
  .contain-3 .card-3 h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  /* Kart içerikleri */
  .contain-3 .card p,
  .contain-3 .card-2 p,
  .contain-3 .card-3 p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    padding: 0 5px;
  }


  .a {
    padding: 8px 16px;
    font-size: 0.85rem;
    width: auto;
    max-width: 180px;
    margin: 10px auto 0;
  }


  .contain-3 .card-2 {
    background: var(--primary-green);
    color: var(--light-text);
  }
  
  .contain-3 .card-3 {
    background: var(--light-green);
    color: var(--dark-text);
  }

  .text-1 {
    font-size: 1.8rem;
  }
  
  .container-2 .contain-1 h2,
  .features .contain h2 {
    font-size: 1.8rem;
  }
  
  .container-2 .contain-2 > div i,
  .features .contain-2 > div i {
    font-size: 1.8rem;
  }


  .two-container > div > h1 {
    font-size: 2.2rem;
    text-align: center;
    padding: 0 10px;
  }

  .container-6 .main-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .footer-container {
    padding: 25px 10px;
  }


  
  .footer-header {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 1rem;
  }
  
  .footer-column li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer-columns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 50px;
  }
  
  .footer-final {
    margin-top: 40px;
    font-size: 0.8rem;
  }
}


@media (max-width: 360px) {

  .flex-container {
    flex-direction: column; /* Dikey hizalama */
    align-items: flex-start; /* Sola yasla */
    gap: 15px; /* Logo ve linkler arası boşluk */
}

.links {
    flex-direction: row;
    margin-bottom: 10px;
    gap: 10px; 
    width: 100%; 
}

.links a {
    padding: 8px 0;
    font-size: 10px;
    transform: translateY(-50%);
}

.links a:last-child {
    border-bottom: none; /* Son linkte çizgi olmasın */
}


  .contain-3 .card h2,
  .contain-3 .card-2 h2,
  .contain-3 .card-3 h2 {
    font-size: 1.6rem;
  }
  
  .contain-3 .card p,
  .contain-3 .card-2 p,
  .contain-3 .card-3 p {
    font-size: 0.9rem;
  }

  .footer-header h1 {
    font-size: 1.5rem;
  }
  
  .footer-header p {
    font-size: 0.9rem;
  }
  
  .footer-column h3 {
    font-size: 0.95rem;
  }
  
  .footer-column li {
    font-size: 0.85rem;
  }
}