:root {
  --primary: #d69e36;
  --bg: #0c0c0c;
  --secondary: #1a1a1a;
  --accent: #ad6e34;
  --text-light: #cccccc;
  --text-white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.95);
  border-bottom: 1px solid var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(1, 1, 1, 0.98);
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logo span {
  color: var(--text-white);
}

.navbar-nav {
  display: flex;
  gap: 2rem;
}

.navbar-nav a {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav a:hover::before {
  width: 100%;
}

.navbar-nav a:hover {
  color: var(--primary);
}

.navbar-extra {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-extra a {
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.navbar-extra a:hover {
  color: var(--primary);
  background-color: rgba(214, 158, 54, 0.1);
  transform: translateY(-2px);
}

#hamburger-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#hamburger-menu:hover {
  transform: scale(1.1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  margin: 0 1rem;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 158, 54, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 158, 54, 0.4);
}

.about {
  padding: 5rem 7%;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 3px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background: rgba(214, 158, 54, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  border: 1px solid rgba(214, 158, 54, 0.1);
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(214, 158, 54, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 40px;
  text-align: center;
}

.feature-item div h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.feature-item div p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* About Image/Logo Styles */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 15px;
  z-index: -1;
  opacity: 0.7;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  background-color: rgba(0, 0, 0, 0.3);
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-image::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 5%;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 2rem 4%;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 15px; 
}


.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 8px solid transparent;
  border-image: linear-gradient(45deg, var(--primary), var(--accent)) 1;
  border-radius: 12px;
  background: linear-gradient(45deg, 
              rgba(214, 158, 54, 0.2) 0%, 
              rgba(173, 110, 52, 0.4) 100%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2) inset;
}


.about-image::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


@keyframes frameShine {
  0% { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

.about-image:hover::before {
  animation: frameShine 3s infinite;
  border-image: linear-gradient(45deg, 
                var(--primary), 
                #f0c14b, 
                var(--accent)) 1;
}
}


.menu {
  padding: 5rem 7%;
  background: var(--bg);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Product Tables Container */
.product-tables-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.product-table-wrapper {
  flex: 1;
  overflow-x: auto;
  background: var(--secondary);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--accent);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-white);
}

.product-table th {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text-white);
  font-weight: 600;
  padding: 1.2rem;
  text-align: left;
}

.product-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(214, 158, 54, 0.1);
}

.product-table tr:nth-child(even) {
  background-color: rgba(214, 158, 54, 0.03);
}

.product-table tr:hover {
  background-color: rgba(214, 158, 54, 0.1);
}

.product-table td:nth-child(3) {
  font-weight: 500;
  color: var(--primary);
}


.company-profile-download {
  margin: 4rem auto 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--secondary), var(--bg));
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.company-profile-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.company-profile-download h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.company-profile-download h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.company-profile-download p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.company-profile-download .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 158, 54, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.company-profile-download .cta-button i {
  font-size: 1.3rem;
}

.company-profile-download .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 158, 54, 0.4);
  background: linear-gradient(45deg, var(--accent), var(--primary));
}

/* Animasi untuk section */
.company-profile-download {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive styles */
@media (max-width: 768px) {
  .company-profile-download {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .company-profile-download h3 {
    font-size: 1.8rem;
  }
  
  .company-profile-download p {
    font-size: 1rem;
  }
  
  .company-profile-download .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .company-profile-download {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  
  .company-profile-download h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .company-profile-download p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

.contact {
  padding: 5rem 7%;
  background: var(--secondary);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(214, 158, 54, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-item div h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.contact-item div p {
  color: var(--text-light);
}

.contact-form {
  background: var(--bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--accent);
}

.contact-form h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-description {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.form-alternative {
  margin-top: 2rem;
  text-align: center;
}

.form-alternative p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-form iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow);
}

.footer {
  background: var(--bg);
  padding: 3rem 7% 1rem;
  text-align: center;
  border-top: 1px solid var(--accent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--text-white);
}

.footer p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(214, 158, 54, 0.4);
}

.footer-bottom {
  border-top: 1px solid var(--accent);
  padding-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width: 576px) {
  html {
    font-size: 55.5%;
  }

  .navbar {
    padding: 1rem 4%;
  }

  .navbar-logo {
    font-size: 1.6rem;
  }

  .navbar-extra a {
    font-size: 1.4rem;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: var(--text-white);
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease-in-out;
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav a {
    color: var(--bg);
    font-size: 1.3rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ccc;
  }

  .navbar-nav a:hover {
    color: var(--primary);
  }

  #hamburger-menu {
    display: block;
    font-size: 2rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-table th,
  .product-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }


  .about,
  .menu,
  .contact {
    padding: 3rem 4%;
  }
}


@media (min-width: 577px) and (max-width: 991px) {
  html {
    font-size: 62.5%;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .navbar-logo {
    font-size: 1.8rem;
  }

  .navbar-nav a {
    font-size: 1.2rem;
  }

  #hamburger-menu {
    display: block;
    font-size: 1.8rem;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: var(--text-white);
    flex-direction: column;
    width: 250px;
    height: 100vh;
    padding: 2rem;
    transition: right 0.3s ease-in-out;
  }

  .navbar-nav.active {
    right: 0;
  }

  .navbar-nav a {
    color: var(--bg);
    padding: 1rem 0;
  }

  .navbar-nav a:hover {
    color: var(--primary);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about,
  .menu,
  .contact {
    padding: 4rem 5%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  html {
    font-size: 70%;
  }

  .navbar {
    padding: 1.2rem 6%;
  }

  .navbar-logo {
    font-size: 2rem;
  }

  .navbar-nav {
    flex-direction: row;
    position: static;
    height: auto;
    background: transparent;
  }

  .navbar-nav a {
    color: var(--text-white);
    font-size: 1.1rem;
  }

  #hamburger-menu {
    display: none;
  }

  .about,
  .menu,
  .contact {
    padding: 4rem 6%;
  }
}

@media (min-width: 1201px) {
  html {
    font-size: 75%;
  }

  .navbar {
    padding: 1.4rem 7%;
  }

  .navbar-nav {
    flex-direction: row;
    position: static;
    background: transparent;
    height: auto;
  }

  .navbar-nav a {
    color: var(--text-white);
    font-size: 1.1rem;
  }

  #hamburger-menu {
    display: none;
  }

  .about,
  .menu,
  .contact {
    padding: 5rem 7%;
  }
  

/* [Previous CSS remains the same until the form section] */

/* Form Styles */
.php-form {
  background: var(--secondary);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--accent);
}

.php-form .form-group {
  margin-bottom: 1.5rem;
}

.php-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.php-form input[type="text"],
.php-form input[type="tel"],
.php-form input[type="date"],
.php-form textarea,
.php-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(214, 158, 54, 0.3);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.php-form input:focus,
.php-form textarea:focus,
.php-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 158, 54, 0.2);
}

.php-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.form-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Success Message */
#form-success {
  display: none;
  background: var(--secondary);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 30px var(--shadow);
  animation: fadeIn 0.8s ease-out;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.success-content h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive Tables */
@media (max-width: 768px) {
  .product-tables-container {
    flex-direction: column;
  }
  
  .product-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .php-form .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
}



/* [Rest of the CSS remains the same] */

#form-success {
  display: none;
  background: var(--secondary);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 30px var(--shadow);
  animation: fadeIn 0.8s ease-out;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.success-content h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.success-content .cta-button {
  padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
  .php-form {
    padding: 2rem 1.5rem;
  }
  
  .php-form .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .php-form label {
    font-size: 1rem;
  }
  
  .php-form input, 
  .php-form select, 
  .php-form textarea {
    padding: 0.9rem 1.1rem;
  }
  
  .success-icon {
    font-size: 3.5rem;
  }
  
  .success-content h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .php-form {
    padding: 1.5rem 1.2rem;
  }
  
  .success-content {
    padding: 0 1rem;
  }
  
  .success-icon {
    font-size: 3rem;
  }
  
  .success-content h4 {
    font-size: 1.5rem;
  }
  
  .success-content p {
    font-size: 1rem;
  }
}
}