/* Base styles */
:root {
  --primary-color: #0066cc;
  --secondary-color: #00b4b3;
  --dark-color: #2c2c2c;
  --darker-color: #2a2a2a;
  --light-color: #ffffff;
  --gray-color: #4b5563;
  --light-gray: #f3f4f6;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	
	img {
		display: block;
		max-width: 160px;
		max-height: 120px;
		object-fit: contain;
		object-position: center center;
	}
}

.header-logo {
  margin: 0 auto;

  img {
    max-width: 220px;
    max-height: 120px;
  }
}

.footer-logo {
	justify-content: flex-start;
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  padding: 16px 0;
  z-index: 100;
  border-bottom: 1px solid var(--light-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-primary:hover {
  background-color: #0055b3;
}

.btn-secondary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: #f9fafb;
}

.arrow-icon {
  display: inline-flex;
}

/* Mobile navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-color);
  margin-bottom: 5px;
  transition: var(--transition);
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 16px 0;
  background-color: var(--light-color);
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Hero section */
.hero {
  padding: 160px 0 80px;
	background-image: url(../assets/images/hero-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.7);
	background-blend-mode: color-burn;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 940px;
	color: var(--light-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--light-color);
  max-width: 800px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Expertise section */
.expertise {
  padding: 80px 0;
  background-color: #f9fafb;
}

.section-subtitle {
	font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.expertise-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary-color);
}

.expertise-icon i {
  font-size: 36px;
}

.expertise-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.expertise-description {
  color: var(--gray-color);
}

/* B2B Marketing section */
.b2b-marketing {
  padding: 80px 0;
}

.b2b-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.b2b-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.b2b-content p {
  color: var(--gray-color);
  margin-bottom: 16px;
}

.b2b-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  font-size: 24px;
  min-width: 24px;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature-content p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.b2b-image {
  border-radius: 8px;
  overflow: hidden;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* Approach section */
.approach {
  padding: 80px 0;
  background-color: #f9fafb;
}

.approach-heading {
	margin-bottom: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.approach-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

/* Learn more section */
.learn-more {
  padding: 80px 0;
  background-color: #f9fafb;
}

.learn-more-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.resources h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--dark-color);
}

.resources > p {
  color: var(--gray-color);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 8px;
  background-color: var(--light-color);
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.resource-card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.resource-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f2ff;
  border-radius: 8px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.resource-icon i {
  font-size: 24px;
}

.resource-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.resource-content p {
  color: var(--gray-color);
  margin-bottom: 16px;
}

.resource-link {
  color: var(--primary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-link:hover {
  text-decoration: underline;
}

.newsletter {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.newsletter h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark-color);
}

.newsletter p {
  color: var(--gray-color);
  margin-bottom: 24px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.newsletter-btn {
  width: 100%;
  justify-content: center;
}

/* Contact section */
.contact {
  padding: 80px 0;
  background-color: var(--darker-color);
  color: var(--light-color);
  position: relative;
}

.contact-header {
  margin-bottom: 10px;
}

.contact h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--light-color);
  margin-bottom: 8px;
  font-weight: 700;
}

p.contact-subtitle {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.company-name {
  margin-top: 8px;
  color: #e5e7eb;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;

	span {
		display: block;
		color: var(--light-color);
		font-weight: 700;
		font-size: 1.25rem;
	}
}

.fa-envelope {
  margin-top: -24px;
}

.fa-location-dot {
  margin-top: -44px;
}

.contact-method i {
  font-size: 24px;
  color: var(--primary-color);
}

.contact-method a {
  color: #e5e7eb;
}

.contact-method a:hover {
  color: var(--light-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--light-color);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: #00a0a0;
}

.privacy-policy-body {
  .footer-brand {
    margin: 0 auto;
  }

  .footer-logo {
    img {
      max-width: 220px;
      max-height: 120px;
    }
  }
}

/* Media queries for contact form */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .btn-submit {
    width: 100%;
  }
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  background-color: #131921;
  color: var(--light-color);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 260px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
}

.footer-links h3 {
  font-size: 1.25rem;
  color: var(--light-color);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #9ca3af;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--light-color);
}

.copyright {
  text-align: center;
  color: #9ca3af;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles for footer */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-links {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-links ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    li {
      text-align: center;
    }
  }

  .footer-brand {
    margin: 0 auto;
  }

  .footer-logo {
    img {
      max-width: 260px;
      max-height: 120px;
    }
  }

  .footer-links {
    margin: 0 auto;
  }

  .fa-location-dot {
    margin-top: -70px;
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .b2b-container {
    grid-template-columns: 1fr;
  }
  
  .learn-more-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .resources h2 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact h2 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .mobile-menu .nav-links {
    display: flex;
  }
}

@media (max-width: 640px) {
  .learn-more {
    padding: 60px 0;
  }
  
  .resources h2 {
    font-size: 2rem;
  }
  
  .resource-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .resource-icon {
    margin-bottom: 8px;
  }
  
  .newsletter {
    padding: 24px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact h2 {
    font-size: 2.5rem;
  }
  
  .btn-submit {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .learn-more {
    padding: 40px 0;
  }
  
  .resources h2 {
    font-size: 1.75rem;
  }
  
  .resource-card {
    padding: 20px;
  }
  
  .resource-icon {
    width: 40px;
    height: 40px;
  }
  
  .resource-icon i {
    font-size: 20px;
  }
  
  .newsletter {
    padding: 20px;
  }
  
  .newsletter h2 {
    font-size: 1.25rem;
  }
}

/* Privacy Policy */
.privacy-policy {
  padding: 160px 0 80px;
  background-color: #f9fafb;
}

.policy-header {
  margin-bottom: 40px;
}

.policy-header h1 {
  font-size: 3rem;
  color: var(--dark-color);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark-color);
}

.policy-content p {
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 1.05rem;
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 20px;
  margin-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--gray-color);
  font-size: 1.05rem;
  line-height: 1.7;
}

.policy-content a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content address {
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: normal;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 120px 0 60px;
  }
  
  .policy-header h1 {
    font-size: 2.5rem;
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy {
    padding: 100px 0 40px;
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
  }
  
  .policy-content p,
  .policy-content li,
  .policy-content address {
    font-size: 1rem;
  }
}

