 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #ffffff;
      min-height: 100vh;
      margin: 0;
      padding: 0;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
      width: 100%;
      box-sizing: border-box;
  }

  .resume-card {
      background: white;
      border-radius: 0;
      box-shadow: none;
      overflow: hidden;
      margin: 0;
  }

  .header {
      background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
      color: white;
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      width: 100%;
  }

  .header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 10px,
          rgba(255,255,255,0.05) 10px,
          rgba(255,255,255,0.05) 20px
      );
      animation: slide 20s linear infinite;
  }

  @keyframes slide {
      0% { transform: translateX(-50px) translateY(-50px); }
      100% { transform: translateX(50px) translateY(50px); }
  }

  .header-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
  }

  .name {
      font-size: 3.5em;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }

  .title {
      font-size: 1.4em;
      margin-bottom: 20px;
      opacity: 0.9;
  }

  .fulbright-badge {
      display: inline-block;
      background: linear-gradient(45deg, #f39c12, #e67e22);
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: bold;
      margin: 20px 0;
      box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% { box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4); }
      50% { box-shadow: 0 4px 25px rgba(243, 156, 18, 0.6); }
      100% { box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4); }
  }

  .contact-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 30px;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: white;
      transition: transform 0.3s ease;
  }

  .contact-item:hover {
      transform: translateY(-3px);
  }

  .content {
      padding: 0;
  }

  .section {
      padding: 50px 40px;
      border-bottom: 1px solid #eee;
  }

  .section:last-child {
      border-bottom: none;
  }

  .section-title {
      font-size: 2.2em;
      font-weight: 700;
      margin-bottom: 30px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 15px;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(45deg, #3498db, #2c3e50);
      border-radius: 2px;
  }

  .education-item, .experience-item, .project-item {
      margin-bottom: 40px;
      padding: 25px;
      background: #f8f9fa;
      border-radius: 15px;
      border-left: 5px solid #3498db;
      border: 1px solid #e9ecef;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .education-item:hover, .experience-item:hover, .project-item:hover {
      transform: translateX(10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

  .item-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
      gap: 20px;
  }

  .item-title {
      font-size: 1.3em;
      font-weight: 700;
      color: #2c3e50;
      flex: 1;
      min-width: 0;
  }

  .item-date {
      background: #3498db;
      color: white;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: 600;
      white-space: nowrap;
      flex-shrink: 0;
  }

  .item-subtitle {
      font-size: 1.1em;
      color: #7f8c8d;
      margin-bottom: 15px;
      font-style: italic;
  }

  .item-description {
      color: #555;
      line-height: 1.7;
  }

  .item-description ul {
      margin-left: 20px;
      margin-top: 10px;
  }

  .item-description li {
      margin-bottom: 8px;
  }

  .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .skill-category {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 15px;
      border-top: 4px solid #3498db;
      border: 1px solid #e9ecef;
  }

  .skill-category h3 {
      color: #2c3e50;
      margin-bottom: 15px;
      font-size: 1.2em;
  }

  .skill-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .skill-tag {
      background: linear-gradient(45deg, #3498db, #2980b9);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: 500;
      white-space: nowrap;
  }

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

  .activity-item {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid #e74c3c;
      border: 1px solid #e9ecef;
      transition: transform 0.3s ease;
  }

  .activity-item:hover {
      transform: translateY(-5px);
  }

  .footer {
      background: #2c3e50;
      color: white;
      text-align: center;
      padding: 30px;
      font-size: 0.9em;
  }

  @media (max-width: 1240px) {
      .container {
          padding: 0;
      }
  }

  @media (max-width: 768px) {
      .container {
          padding: 0;
      }
      
      .header-content {
          padding: 0 20px;
      }
      
      .name {
          font-size: 2.5em;
      }
      
      .title {
          font-size: 1.2em;
      }
      
      .section {
          padding: 30px 20px;
      }
      
      .contact-info {
          flex-direction: column;
          gap: 15px;
          align-items: center;
      }
      
      .item-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
      }
      
      .item-date {
          align-self: flex-start;
      }
      
      .skills-grid {
          grid-template-columns: 1fr;
      }
      
      .activities-grid {
          grid-template-columns: 1fr;
      }
      
      .section-title {
          font-size: 1.8em;
      }
      
      .fulbright-badge {
          padding: 10px 20px;
          font-size: 0.9em;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 0;
      }
      
      .header {
          padding: 40px 0;
      }
      
      .header-content {
          padding: 0 20px;
      }
      
      .name {
          font-size: 2em;
      }
      
      .title {
          font-size: 1.1em;
      }
      
      .section {
          padding: 25px 15px;
      }
      
      .section-title {
          font-size: 1.6em;
      }
      
      .education-item, .experience-item, .project-item {
          padding: 20px 15px;
          margin-bottom: 25px;
      }
      
      .item-title {
          font-size: 1.1em;
      }
      
      .contact-item {
          font-size: 0.9em;
      }
      
      .skill-category, .activity-item {
          padding: 20px 15px;
      }
      
      .fulbright-badge {
          padding: 8px 16px;
          font-size: 0.8em;
      }
  }

  @media (max-width: 320px) {
      .name {
          font-size: 1.8em;
      }
      
      .section-title {
          font-size: 1.4em;
      }
      
      .education-item, .experience-item, .project-item {
          padding: 15px 10px;
      }
  }

  .project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 15px;
  }

  .tech-tag {
      background: #e74c3c;
      color: white;
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 0.85em;
      font-weight: 500;
      white-space: nowrap;
  }
