.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000;
}

html {
  scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Unbounded", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-accept,
.btn-reject {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-accept {
  background: #2563eb;
  color: white;
}

.btn-accept:hover {
  background: #1d4ed8;
}

.btn-reject {
  background: #1f2937;
  color: white;
}

.btn-reject:hover {
  background: #111827;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Ce oferim Section */
.oferim {
  padding: 80px 0;
  background: white;
}

.oferim h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.oferim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.oferim-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.oferim-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oferim-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  padding: 20px 20px 10px;
}

.oferim-card p {
  color: #64748b;
  padding: 0 20px 15px;
  line-height: 1.6;
}

.oferim-card ul {
  list-style: none;
  padding: 0 20px 20px;
}

.oferim-card li {
  color: #64748b;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.oferim-card li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

/* Despre Section */
.despre {
  padding: 80px 0;
  background: #f8fafc;
}

.despre-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.despre-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 30px;
}

.despre-text p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}

.despre-text strong {
  color: #2563eb;
  font-weight: 600;
}

.despre-image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Programe Section */
.programe {
  padding: 80px 0;
  background: white;
}

.programe h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

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

.program-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-image {
  height: 150px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  padding: 20px 20px 10px;
}

.program-card p {
  color: #64748b;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Testimoniale Section */
.testimoniale {
  padding: 80px 0;
  background: #f8fafc;
}

.testimoniale h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
}

/* Perspective Section */
.perspective {
  padding: 80px 0;
  background: white;
}

.perspective h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.perspective-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.perspective-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.perspective-item:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.perspective-item:nth-child(even) .perspective-image {
  order: 2;
}

.perspective-item:nth-child(even) .perspective-content {
  order: 1;
}

.perspective-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.perspective-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.perspective-content p {
  color: #64748b;
  line-height: 1.7;
}

/* Stiri Section */
.stiri {
  padding: 80px 0;
  background: #f8fafc;
}

.stiri h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.stiri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.stiri-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stiri-card:hover {
  transform: translateY(-5px);
}

.stiri-image {
  height: 200px;
  overflow: hidden;
}

.stiri-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stiri-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  padding: 20px 20px 10px;
  line-height: 1.3;
}

.stiri-card p {
  color: #64748b;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #2563eb;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  background: white;
  transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: #1f2937;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.8rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .oferim-grid {
    grid-template-columns: 1fr;
  }

  .despre-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .programe-grid {
    grid-template-columns: 1fr;
  }

  .testimoniale-grid {
    grid-template-columns: 1fr;
  }

  .perspective-item,
  .perspective-item:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .perspective-item:nth-child(even) .perspective-image,
  .perspective-item:nth-child(even) .perspective-content {
    order: unset;
  }

  .stiri-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-content h3 {
    font-size: 24px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}

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

  .navbar {
    padding: 1rem 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .oferim h2,
  .programe h2,
  .testimoniale h2,
  .perspective h2,
  .stiri h2 {
    font-size: 2rem;
  }

  .oferim,
  .programe,
  .testimoniale,
  .perspective,
  .stiri,
  .contact {
    padding: 60px 0;
  }

  .perspective-grid {
    gap: 40px;
  }

  .perspective-item {
    gap: 30px;
  }
}
