* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* MAIN POSTER */
.poster {
    width: 900px;
    height: 550px;
    background: radial-gradient(circle at top, #222, #000);
    display: flex;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255,165,0,0.2);
}

/* LEFT SIDE */
.left {
    width: 45%;
    padding: 40px;
}

.left h1 {
    font-size: 36px;
    line-height: 1.2;
}

.left h1 span {
    color: #ff9f1c;
}

.tagline {
    margin: 10px 0 30px;
    color: #ccc;
}

.logo {
    margin: 30px 0;
    font-size: 30px;
    color: #ff9f1c;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 15px #ff9f1c;
}

.logo span {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

.contact p {
    margin: 8px 0;
    background: #1c1c1c;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ff9f1c;
    width: fit-content;
    transition: all 0.3s ease;
}

.contact p:hover {
    background: #ff9f1c;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,159,28,0.5);
}

.left h4 {
    margin-top: 25px;
    color: #ff9f1c;
}

/* RIGHT SIDE */
.right {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box {
    border: 1px solid #ff9f1c;
    padding: 25px;
    border-radius: 12px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.box h3 {
    color: #ff9f1c;
    margin-bottom: 5px;
}

.box p {
    margin-bottom: 18px;
    font-size: 14px;
    color: #ddd;
}

.social {
    text-align: right;
    font-weight: 600;
    color: #ff9f1c;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.form-container {
  max-width: 900px;
  background: #fff;
  padding: 30px;
  margin: 30px auto;
  border: 1px solid #ccc;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
}

.section {
  margin-top: 25px;
}

.section h3 {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

label {
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  padding: 6px;
  margin-top: 5px;
  border: 1px solid #aaa;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #333;
}

.agree {
  font-weight: bold;
}

/* Mobile View */
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
