* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

.cv-container {
  display: flex;
  max-width: 1000px;
  margin: 30px auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar {
  width: 40%;
  background: #1c1f25;
  color: #fff;
  padding: 20px;
}

.sidebar .profile {
  text-align: center;
}

.sidebar img {
  width: 150px;
  height: 150px;
  box-shadow: 0 4px 15px #d4af37;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #d4af37;
}

.sidebar h2 {
  font-size: 16px;
  margin: 15px 0 15px;
  background: #d4af37;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 15px #d4af37;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 20px;
}

.sidebar li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4em;
}

.sidebar .social p {
  font-size: 14px;
  text-align: center;
}

.content {
  width: 70%;
  padding: 30px;
}

header h1 {
  font-size: 26px;
  font-weight: bold;
}

header h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

section {
  margin-bottom: 20px;
}

section h2 {
  font-size: 18px;
  border-bottom: 2px solid #d4af37;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

section p, section li {
  font-size: 14px;
  line-height: 1.6em;
}

  .buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .buttons button {
    background: transparent;
    border: 4px solid #d4af37;
    color: #fff;
    padding: 0.1rem 3rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: rellative;
    overflow: hidden;
    z-index: 2;
  }

  .buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d4af37;
    transition: width 0.3s ease;
    z-index: -1;
  }

  .buttons button:hover::before {
    width: 100%;
  }

  .buttons button:first-child {
    background: #d4af37;
    box-shadow: 0 4px 15px #d4af37;
  }

  .buttons button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #d4af37;
  }

  .buttons2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .buttons2 button {
    background: transparent;
    border: 4px solid #d4af37;
    color: #fff;
    padding: 0.1rem 3.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: rellative;
    overflow: hidden;
    z-index: 2;
  }

  .buttons2 button::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 100%;
    background: #d4af37;
    transition: width 0.3s ease;
    z-index: -1;
  }

  .buttons2 button:hover::before {
    width: 100%;
  }

  .buttons2 button:first-child {
    background: #d4af37;
    box-shadow: 0 4px 15px #d4af37;
  }

  .buttons2 button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #d4af37;
  }
  
  .buttons3 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .buttons3 button {
    background: transparent;
    border: 4px solid #d4af37;
    color: #fff;
    padding: 0.1rem 3rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: rellative;
    overflow: hidden;
    z-index: 2;
  }

  .buttons3 button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d4af37;
    transition: width 0.3s ease;
    z-index: -1;
  }

  .buttons3 button:hover::before {
    width: 100%;
  }

  .buttons3 button:first-child {
    background: #d4af37;
    box-shadow: 0 4px 15px #d4af37;
  }

  .buttons3 button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #d4af37;
  }
  
.education ul, 
.experience ul, 
.skills ul {
  list-style: disc;
  margin-left: 20px;
}

.experience h3 {
  font-size: 15px;
  margin-top: 10px;
}
