:root {
      --primary-color: #dc3545;
      --secondary-color: #3d9970;
      --text-color: #333;
      --light-gray: #f8f9fa;
      --dark-gray: #333;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      color: var(--text-color);
      line-height: 1.7;
      background-color: #fff;
    }
    
    .hero-section {
      background: linear-gradient(135deg, #baf1e5 0%, #c3cfe2 100%);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    
    .profile-img {
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      max-width: 50%;
      height: auto;
    }
    
    .profile-img:hover {
      transform: translateY(-5px);
    }
    
    .section {
      padding: 80px 0;
    }
    
    .section-title {
      font-weight: 700;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      height: 3px;
      width: 40px;
      background-color: var(--secondary-color);
    }
    
    .btn-custom {
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-bottom: 15px;
      border: 2px solid var(--secondary-color);
      color: var(--secondary-color);
    }
    
    .btn-custom:hover {
      background-color: var(--secondary-color);
      color: white;
      transform: translateY(-2px);
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      margin-right: 15px;
      border-radius: 50%;
      background-color: var(--light-gray);
      color: #dc3545;
      transition: all 0.3s ease;
      text-decoration: none;
      font-size: 20px;
    }
    
    .social-icons a:hover {
      background-color: var(--primary-color);
      color: white;
      transform: translateY(-3px);
    }
    
    .footer {
      background-color: var(--dark-gray);
      color: white;
      padding: 30px 0;
    }
    
    .skills-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    
    .skill-badge {
      background-color: var(--light-gray);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .contact-item i {
      margin-right: 10px;
      color: var(--secondary-color);
      font-size: 20px;
    }
    
    @media (max-width: 768px) {
      .hero-section {
        padding: 80px 0 60px;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .profile-img-container {
        margin-bottom: 30px;
      }
    }