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

:root {
  --color-navy: #0a2540;
  --color-navy-light: #1a3a5c;
  --color-gold: #d4a574;
  --color-gold-dark: #b88c5d;
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-gray-light: #f5f3f0;
  --color-gray: #6b7280;
  --color-text: #374151;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

header {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 3rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-1px);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.938rem;
  padding: 10px 22px;
  border-radius: 24px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  letter-spacing: -0.01em;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.main-nav a:hover {
  color: var(--color-navy);
  background-color: var(--color-gray-light);
  transform: translateY(-1px);
}

.main-nav a.active {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.main-nav a.active:hover {
  background-color: var(--color-navy-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: var(--color-gray-light);
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--color-navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.313rem;
  margin-bottom: 3rem;
  opacity: 0.92;
  line-height: 1.65;
  color: var(--color-cream);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.features h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 5rem;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.features h2::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 37, 64, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold);
}

.feature-card h3 {
  font-size: 1.625rem;
  margin-bottom: 1.125rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1.063rem;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.188rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-cream);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.page-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.188rem;
  opacity: 0.9;
  color: var(--color-cream);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.content-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 2.25rem;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.content-wrapper h3 {
  font-size: 1.625rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.content-wrapper p {
  margin-bottom: 1.75rem;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.063rem;
}

.content-wrapper ul {
  margin-bottom: 1.75rem;
  margin-left: 1.75rem;
  color: var(--color-text);
}

.content-wrapper li {
  margin-bottom: 0.875rem;
  line-height: 1.8;
  font-size: 1.063rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  margin: 3.5rem 0;
}

.value-card {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 5px solid var(--color-gold);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-left-width: 8px;
}

.value-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-card p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}

.team-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.team-member {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.team-member:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.team-member-image {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-cream) 100%);
  overflow: hidden;
  position: relative;
}

.team-member-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.6));
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .team-member-image img {
  transform: scale(1.08);
}

.team-member-info {
  padding: 2.5rem;
  position: relative;
}

.team-member-info h3 {
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.team-member-info .role {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.team-member-info .bio {
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1rem;
}

.services-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.8;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3.5rem;
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.service-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-cream) 100%);
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 3rem 3rem 3rem 0;
}

.service-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-content p {
  color: var(--color-text);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 1.063rem;
}

.service-content ul {
  list-style: none;
  margin-top: 1.75rem;
}

.service-content ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1rem;
}

.service-content ul li::before {
  content: "→";
  color: var(--color-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.25rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 2.25rem;
  margin-bottom: 1.75rem;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: var(--color-text);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-size: 1.063rem;
}

.info-block {
  margin-bottom: 3rem;
  padding: 1.75rem;
  background-color: var(--color-gray-light);
  border-radius: 12px;
  border-left: 4px solid var(--color-gold);
}

.info-block h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.info-block p {
  color: var(--color-text);
  margin-bottom: 0.625rem;
  font-size: 1rem;
}

.info-block a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.info-block a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.contact-form {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.938rem;
  letter-spacing: -0.01em;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10, 37, 64, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--color-white);
  color: var(--color-navy);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
  transform: translateY(-1px);
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}

.error-message {
  display: none;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.625rem;
  font-weight: 500;
}

.form-group.error .error-message {
  display: block;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1.125rem 1.5rem;
  border-radius: 10px;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-status.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 2.25rem;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  font-size: 1.625rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-content p {
  margin-bottom: 1.75rem;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.063rem;
}

.legal-content ul {
  margin-bottom: 1.75rem;
  margin-left: 1.75rem;
  color: var(--color-text);
}

.legal-content li {
  margin-bottom: 0.875rem;
  line-height: 1.8;
  font-size: 1.063rem;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-cream);
  padding: 5rem 0 2rem;
  margin-top: 8rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-column h4 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-column p {
  opacity: 0.88;
  font-size: 0.938rem;
  line-height: 1.8;
}

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

.footer-column ul li {
  margin-bottom: 0.875rem;
}

.footer-column a {
  color: var(--color-cream);
  text-decoration: none;
  opacity: 0.88;
  transition: all 0.3s ease;
  font-size: 0.938rem;
  display: inline-block;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
}

.footer-bottom p {
  opacity: 0.75;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 3.25rem;
  }

  .service-item {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }

  .service-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
  }
}

@media (max-width: 968px) {
  .hero-content h2 {
    font-size: 2.75rem;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding: 2.5rem;
  }

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

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

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(10, 37, 64, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    border-radius: 10px;
  }

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

  .hero-content h2 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1.125rem;
  }

  .features {
    padding: 80px 0;
  }

  .features h2 {
    font-size: 2.25rem;
    margin-bottom: 3.5rem;
  }

  .page-header {
    padding: 80px 0 60px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .content-section {
    padding: 80px 0;
  }

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

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

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

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

  .hero-content h2 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .features {
    padding: 60px 0;
  }

  .features h2 {
    font-size: 1.875rem;
  }

  .content-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
