* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.8;
  color: #2d3748;
  background-color: #f7fafc;
}

h1,
h2,
h3,
h4 {
  font-family: "Arial", "Helvetica", sans-serif;
}

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

.header {
  background-color: #1a365d;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #d4af37;
  font-family: "Arial", sans-serif;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: #e2e8f0;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 15px;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #d4af37;
}

.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 70px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Arial", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background-color: #d4af37;
  color: #1a365d;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #1a365d;
  margin-bottom: 15px;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  margin: 0 auto;
}

.section-despre {
  padding: 100px 0;
  background-color: white;
}

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

.despre-text p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 16px;
}

.image-placeholder {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  padding: 0;
  color: #e2e8f0;
  text-align: center;
  border-left: 4px solid #d4af37;
  font-style: italic;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder.small {
  min-height: 200px;
  padding: 0;
  margin-top: 20px;
}

.section-servicii {
  padding: 100px 0;
  background-color: #f7fafc;
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.serviciu-card {
  background-color: white;
  padding: 40px;
  border-top: 4px solid #d4af37;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.serviciu-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.serviciu-card h3 {
  font-size: 24px;
  color: #1a365d;
  margin-bottom: 15px;
}

.serviciu-card p {
  font-size: 15px;
  line-height: 1.7;
}

.section-expertise {
  padding: 100px 0;
  background-color: white;
}

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

.expertise-item {
  margin-bottom: 40px;
}

.expertise-item h3 {
  font-size: 22px;
  color: #1a365d;
  margin-bottom: 12px;
}

.expertise-item p {
  font-size: 15px;
  line-height: 1.7;
}

.section-infrastructura {
  padding: 100px 0;
  background-color: #f7fafc;
}

.infrastructura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.infra-item {
  background-color: white;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.infra-item h3 {
  font-size: 22px;
  color: #1a365d;
  margin-bottom: 15px;
}

.infra-item p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-contact {
  padding: 100px 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 24px;
  color: #1a365d;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item strong {
  color: #1a365d;
  font-family: "Arial", sans-serif;
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 15px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cbd5e0;
  font-family: "Arial", sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.footer {
  background-color: #1a365d;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  font-family: "Arial", sans-serif;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2c5282;
  font-family: "Arial", sans-serif;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d3748;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-content p {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  margin: 0;
}

.cookie-btn {
  background-color: #d4af37;
  color: #1a365d;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Arial", sans-serif;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: #b8941f;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  color: #1a365d;
  margin-bottom: 20px;
  font-size: 24px;
}

.modal-content p {
  margin-bottom: 30px;
  font-size: 16px;
}

.legal-page {
  padding: 150px 0 80px;
  background-color: white;
}

.legal-page h1 {
  font-size: 42px;
  color: #1a365d;
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 28px;
  color: #1a365d;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-page h3 {
  font-size: 22px;
  color: #2c5282;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-page p,
.legal-page ul {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.legal-page ul {
  padding-left: 40px;
}

.legal-page li {
  margin-bottom: 10px;
}

.legal-page .last-updated {
  font-style: italic;
  color: #718096;
  margin-bottom: 30px;
  font-family: "Arial", sans-serif;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .despre-content,
  .expertise-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .servicii-grid,
  .infrastructura-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
