:root {
  --color-white: #ffffff;
  --color-text: #222;
  --color-muted: #444;
  --color-border: #999;
  --color-black: #000;
  --color-gray-light: #d9d9d9;
  --color-gray-dark: #333333;
  --page-padding: 30px 50px;
  --section-gap: 15px;
  --radius-pill: 30px;
  --radius-sm: 4px;
}

/* Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  max-width: 1600px;
  margin: auto;
  background: var(--color-white);
  padding: var(--page-padding);
  color: var(--color-text);
}

/* Header Style */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

header img {
  width: 220px;
}

header p a {
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 15px;
}

/* Middle_Content */

.container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: -15px;
}

/* Left_side_content */

.left-content {
  width: 68%;
  background: var(--color-gray-light);
  padding: 30px 20px;
}

/* Person_Detail */

.head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.microphone-icon {
  background: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  margin-right: 10px;
}

.microphone-icon img {
  width: 40px;
}

.person-detail h4 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
  font-weight: 900;
}

.person-detail p {
  font-size: 14px;
  color: #444;
}

/* Speaker_Message */

.left-content p {
  font-size: 22px;
  line-height: 1;
  text-align: justify;
  font-weight: lighter;
}

.left-content a {
  color: black;
  text-decoration: none;
}

.left-content strong {
  font-weight: bold;
}

/* Right_Side_Content */

.right-content {
  width: 32%;
  background: var(--color-gray-dark);
}

.right-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bootcamp_Sponsors */

.Sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}

.Sponsors h5 {
  font-size: 40px;
}

.Sponsors img {
  width: 140px;
  border: 1px solid var(--color-border);
  padding: 10px;
}

/* footer_content */

footer {
  margin-top: 25px;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
}

/* RESPONSIVE  */

@media (max-width: 760px) {
  body {
    padding: 20px;
  }

  .container {
    flex-direction: column;
  }

  .left-content,
  .right-content {
    width: 100%;
  }

  .left-content p {
    font-size: 12px;
  }

  .person-detail h4 {
    font-size: 15px;
  }

  .microphone-icon img {
    width: 25px;
  }

  .Sponsors {
    flex-wrap: wrap;
  }

  .Sponsors h5 {
    width: 100%;
    text-align: center;
    margin-bottom: -10px;
  }

  header {
    flex-direction: column;
    gap: 15px;
  }
}
