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

:root {
  --primary: #2d5f5d;
  --secondary: #7ba8a3;
  --accent: #a8c5d1;
  --light: #f7f9f9;
  --dark: #1f3d3b;
  --gradient-1: linear-gradient(135deg, #7ba8a3 0%, #5a8b87 100%);
  --gradient-2: linear-gradient(135deg, #a8c5d1 0%, #8badb8 100%);
  --gradient-3: linear-gradient(135deg, #b8d4d4 0%, #9ec4c4 100%);
  --text: #3d4f4e;
  --border: #dfe8e7;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 15px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.hero {
  padding: 140px 0 80px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .vertical-text {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.7;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.hero-card:nth-child(1) {
  top: 0;
  left: 0;
  width: 200px;
}

.hero-card:nth-child(2) {
  top: 50px;
  right: 0;
  width: 180px;
}

.hero-card:nth-child(3) {
  bottom: 0;
  left: 50px;
  width: 220px;
}

.hero-card i {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 16px;
  font-weight: 600;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 50px;
}

.btn-primary {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--secondary);
}

.about {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--gradient-3);
  opacity: 0.05;
  border-radius: 50%;
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text);
}

.about-features {
  display: grid;
  gap: 25px;
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 32px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-item p {
  font-size: 14px;
  color: var(--text);
}

.services {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--gradient-2);
  opacity: 0.1;
  border-radius: 50%;
}

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

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.section-header .vertical-text {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 10px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.service-card i {
  font-size: 40px;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.process {
  padding: 100px 0;
  background: var(--light);
}

.process h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--gradient-1);
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.process-step p {
  font-size: 14px;
  color: var(--text);
}

.cta {
  padding: 100px 0;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.testimonials {
  padding: 100px 0;
  background: var(--light);
}

.testimonials h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 80px;
  font-family: 'Syne', sans-serif;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
}

.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-1);
  position: relative;
}

.page-hero-content {
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

.page-hero-content .vertical-text {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  gap: 60px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.portfolio-item:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.portfolio-item:nth-child(even) img {
  order: 2;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.portfolio-info p {
  font-size: 16px;
  color: var(--text);
}

.approach {
  padding: 100px 0;
  background: var(--light);
}

.approach-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.approach-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.approach-features {
  display: grid;
  gap: 25px;
}

.feature-box {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box i {
  font-size: 32px;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text);
}

.packages {
  padding: 100px 0;
}

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

.package-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  background: var(--gradient-1);
  color: #fff;
}

.package-card.featured .package-header h3,
.package-card.featured .package-price .amount,
.package-card.featured .package-features .feature {
  color: #fff;
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-2);
  color: #fff;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.package-price .currency {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}

.package-price .amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-card.featured .package-price .amount {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-features {
  margin-bottom: 30px;
}

.package-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.package-features .feature i {
  color: var(--secondary);
  font-size: 14px;
}

.package-card.featured .package-features .feature i {
  color: #fff;
}

.btn-package {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--gradient-1);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-package:hover {
  transform: scale(1.05);
}

.package-card.featured .btn-package {
  background: #fff;
  color: var(--secondary);
}

.package-info {
  padding: 100px 0;
  background: var(--light);
}

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

.info-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.info-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.info-details {
  display: grid;
  gap: 30px;
}

.detail-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.detail-item i {
  font-size: 32px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.detail-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-item p {
  font-size: 14px;
  color: var(--text);
}

.faq {
  padding: 100px 0;
}

.faq h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary);
}

.faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.faq-item p {
  font-size: 14px;
  color: var(--text);
}

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

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

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-details {
  display: grid;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-item i {
  font-size: 24px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 5px;
}

.contact-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-item p {
  font-size: 14px;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--gradient-1);
  padding: 50px;
  border-radius: 20px;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text);
  border-radius: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
}

.checkbox-group {
  display: block;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
}

.checkbox-label a {
  color: #fff;
  text-decoration: underline;
}

.btn-submit {
  padding: 14px 35px;
  background: #fff;
  color: var(--secondary);
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 50px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-section {
  padding: 100px 0;
  background: var(--light);
}

.map-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 140px 0 80px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  background: var(--gradient-1);
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.thankyou-content i {
  font-size: 80px;
  margin-bottom: 30px;
}

.thankyou-content h1,
.error-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.thankyou-content p,
.error-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-number {
  font-family: 'Syne', sans-serif;
  font-size: 140px;
  font-weight: 700;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.policy-section {
  padding: 140px 0 80px;
  word-break: break-all;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.policy-date {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 40px;
}

.policy-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 50px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
}

.policy-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
}

.policy-content p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 25px;
  padding-left: 30px;
}

.policy-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 25px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.privacy-content p {
  font-size: 14px;
  margin: 0;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons button {
  padding: 10px 25px;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 50px;
}

.privacy-buttons button:hover {
  transform: scale(1.05);
}

.privacy-buttons a {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 18px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    position: relative;
  }

  .hero-visual .vertical-text {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
    margin-bottom: 15px;
    text-align: center;
  }

  .hero-card {
    position: static !important;
    width: 100% !important;
    padding: 20px !important;
  }

  .grid-2-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .section-header {
    text-align: center;
  }

  .section-header .vertical-text {
    writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }

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

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

  .process-step::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  .page-hero-content .vertical-text {
    writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }

  .portfolio-item,
  .portfolio-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(even) img {
    order: 0;
  }

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

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
  }

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

  .error-number {
    font-size: 100px;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 32px;
  }

  .thankyou-content i {
    font-size: 60px;
  }

  .policy-content h1 {
    font-size: 36px;
  }

  .cta-content h2 {
    font-size: 36px;
  }
}

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

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

  .about-text h2 {
    font-size: 28px;
  }

  .package-price .amount {
    font-size: 42px;
  }

  .section-header h2,
  .process h2,
  .testimonials h2,
  .faq h2,
  .map-section h2 {
    font-size: 28px;
  }

  .page-hero-content h1 {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 26px;
  }

  .policy-content h1 {
    font-size: 28px;
  }

  .policy-content h2 {
    font-size: 24px;
  }
}
