:root {
     --primary-color: #43eee4;
     --secondary-color: #2e3192;
     --white: #ffffff;
     --light-bg: #f8f9fa;
 }
 
 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     margin: 0;
     padding: 0;
     color: #333;
     line-height: 1.6;
 }
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }
 
 .feature-section {
     display: flex;
     align-items: center;
     margin: 60px 0;
     min-height: 400px;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
     background-color: var(--white);
 }
 
 .feature-section:hover {
     transform: translateY(-5px);
 }
 
 .feature-section:nth-child(even) {
     flex-direction: row-reverse;
 }
 
 .feature-content {
     flex: 1;
     padding: 40px;
     animation: fadeIn 1s ease;
 }
 
 .feature-image {
     flex: 1;
     min-height: 400px;
     background-size: cover;
     background-position: center;
     position: relative;
     overflow: hidden;
     position: relative;
     overflow: hidden;
     
 }
 
 .feature-image img {
     width: 100%;
     height: 100%;
     object-fit: cover; /* Resmi orantılı şekilde kaplatır */
     object-position: center; /* Resmi tam ortalar */
     position: absolute;
     top: 0;
     left: 0;
 }
 
 .feature-image::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(67,238,228,0.3), rgba(46,49,146,0.3));
     opacity: 0;
     transition: opacity 0.5s ease;
 }
 
 .feature-image:hover::before {
     opacity: 1;
 }
 
 .feature-number {
     font-size: 24px;
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 10px;
 }
 
 .feature-title {
     font-size: 28px;
     color: var(--secondary-color);
     margin-bottom: 20px;
     font-weight: 700;
 }
 
 .feature-description {
     font-size: 16px;
     margin-bottom: 30px;
     color: #555;
 }
 
 .feature-link {
     display: inline-block;
     padding: 10px 20px;
     background-color: var(--primary-color);
     color: var(--secondary-color);
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid var(--primary-color);
 }
 
 .feature-link:hover {
     background-color: transparent;
     color: var(--primary-color);
 }
 
 @keyframes fadeIn {
     from { opacity: 0; transform: translateY(20px); }
     to { opacity: 1; transform: translateY(0); }
 }
 
 /* Responsive */
 @media (max-width: 768px) {
     .feature-section, .feature-section:nth-child(even) {
         flex-direction: column;
     }
     
     .feature-image {
         min-height: 250px;
         width: 100%;
     }
 }