:root {
  --primary: #0a2463;
  --secondary: #3e92cc;
  --accent: #fb8500;
  --tertiary: #023047;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo i {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

nav a:hover {
  background: var(--light);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger span {
  width: 1.5rem;
  height: 0.15rem;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  flex-direction: column;
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-sm);
}

.mobile-nav a {
  font-size: 1.1rem;
  display: block;
  padding: var(--space-sm);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--tertiary) 50%,
    var(--secondary) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../business-english-visuals/hero-pattern.svg') center/cover;
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-text h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  line-height: 1.7;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--primary);
}

section {
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: none;
}

.card h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: var(--space-sm) 0;
}

.features {
  background: var(--light);
}

.feature-list {
  list-style: none;
  margin-top: var(--space-md);
}

.feature-list li {
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.feature-list i {
  color: var(--accent);
  font-size: 1rem;
  min-width: 1rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.contact-item div h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.contact-item div p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.contact-form {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--dark);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 77, 143, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-md) 0;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.75rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content h1 {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--gray);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--gray);
  margin-bottom: var(--space-lg);
}

.legal-page {
  padding: var(--space-lg) 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.legal-page h2 {
  color: var(--primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  margin-bottom: var(--space-sm);
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

.legal-page ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.legal-page li {
  margin-bottom: var(--space-xs);
  color: var(--gray);
  font-size: 0.85rem;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup p {
  font-size: 0.8rem;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.privacy-popup a {
  color: var(--accent);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup button {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.accept-btn {
  background: var(--accent);
  color: var(--white);
}

.accept-btn:hover {
  background: #e67e22;
}

.decline-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.decline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.settings-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: underline;
}

.settings-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cookie-settings-modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.cookie-option {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--light);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-option input[type='checkbox'] {
  width: 40px;
  height: 20px;
}

.cookie-option p {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: var(--space-xs);
}

.modal-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.save-preferences-btn,
.close-modal-btn {
  flex: 1;
  padding: var(--space-sm);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.save-preferences-btn {
  background: var(--accent);
  color: var(--white);
}

.save-preferences-btn:hover {
  background: #e67e22;
}

.close-modal-btn {
  background: var(--light);
  color: var(--dark);
}

.close-modal-btn:hover {
  background: #e0e0e0;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }

  .error-content h1 {
    font-size: 3rem;
  }

  .privacy-popup-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-popup-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .privacy-popup button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-stats {
    margin-top: var(--space-md);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-text h1 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
}
