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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1c2b36;
}

/* Header Banner */
.header-banner {
  background: #00d084;
  color: white;
  text-align: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.header-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

/* Navigation */
nav {
  background: white;
  padding: 15px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1c2b36;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #1c2b36;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d084;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 500px;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: flex;
  min-height: 200px;
}

.dropdown-left {
  flex: 1;
  padding: 30px;
  background: white;
}

.dropdown-left h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1c2b36;
  margin-bottom: 15px;
}

.dropdown-separator {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-bottom: 20px;
}

.dropdown-links {
  list-style: none;
}

.dropdown-links li {
  margin-bottom: 15px;
}

.dropdown-links a {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.dropdown-links a:hover {
  color: #00d084;
}

.dropdown-icon {
  margin-right: 10px;
  font-size: 14px;
  color: #1c2b36;
}

.dropdown-right {
  flex: 1;
  padding: 30px;
  background: white;
  color: #1c2b36;
}

.dropdown-right h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1c2b36;
  margin-bottom: 15px;
}

.dropdown-right .dropdown-separator {
  background: #ddd;
}

.dropdown-right .dropdown-links a {
  color: #666;
}

.dropdown-right .dropdown-links a:hover {
  color: #00d084;
}

/* Product dropdown specific styles */
.dropdown:first-of-type .dropdown-right {
  background: #00d084;
  color: white;
}

.dropdown:first-of-type .dropdown-right h3 {
  color: white;
}

.dropdown:first-of-type .dropdown-right .dropdown-separator {
  background: rgba(255,255,255,0.3);
}

.dropdown:first-of-type .dropdown-right .dropdown-links a {
  color: white;
}

.dropdown:first-of-type .dropdown-right .dropdown-links a:hover {
  color: white;
  opacity: 0.8;
}

.featured-card {
  background: #02665E;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-logo .logo-icon {
  background: white;
  color: #02665E;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.card-logo .logo-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.card-subtitle {
  font-size: 14px;
  color: white;
  opacity: 0.9;
}

.cta-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.3s;
}

.cta-button:hover {
  opacity: 0.8;
}

/* Resources dropdown specific styles */
.dropdown:last-of-type .dropdown-right {
  background: #00d084;
  color: white;
}

.dropdown:last-of-type .dropdown-right h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}

.dropdown:last-of-type .dropdown-right .dropdown-separator {
  background: rgba(255,255,255,0.3);
}

.dropdown:last-of-type .dropdown-right .dropdown-links a {
  color: white;
}

.dropdown:last-of-type .dropdown-right .dropdown-links a:hover {
  color: white;
  opacity: 0.8;
}

.featured-finder {
  margin-bottom: 20px;
}

.finder-graphic {
  position: relative;
  margin-bottom: 15px;
}

.funnel-shape {
  position: relative;
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
}

.funnel-top {
  width: 100%;
  height: 20px;
  background: #02665E;
  border-radius: 4px 4px 0 0;
}

.funnel-middle {
  width: 80%;
  height: 20px;
  background: #00b875;
  margin: 0 auto;
  border-radius: 0;
}

.funnel-bottom {
  width: 60%;
  height: 20px;
  background: #00d084;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.person-icon {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #00d084;
}

.finder-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.finder-subtitle {
  font-size: 12px;
  color: white;
  opacity: 0.9;
}

.dropdown:last-of-type .cta-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.dropdown:last-of-type .cta-button {
  font-size: 12px;
  color: white;
}

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

.btn-secondary {
  background: none;
  border: 1px solid #1c2b36;
  color: #1c2b36;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #1c2b36;
  color: white;
}

.btn-primary {
  background: #00d084;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #00b875;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5fcff 0%, #e8f4f8 100%);
  padding: 100px 40px;
  text-align: center;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-hero-primary {
  background: #1c2b36;
  color: white;
}

.btn-hero-primary:hover {
  background: #0f1a24;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: white;
  color: #1c2b36;
  border: 2px solid #1c2b36;
}

.btn-hero-secondary:hover {
  background: #1c2b36;
  color: white;
}

/* Product Sections */
.product-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
}

.product-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00d084;
}

.product-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-link {
  display: inline-block;
  background: #1c2b36;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-link:hover {
  background: #0f1a24;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-link::after {
  content: " →";
  margin-left: 8px;
}

.product-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
  background: #1c2b36;
  padding: 100px 40px;
}

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

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-profile {
  margin-bottom: 20px;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  color: white;
}

.testimonial-attribution {
  font-size: 16px;
  color: white;
  text-align: right;
  font-weight: 500;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Trusted By Section */
.trusted-by {
  padding: 80px 40px;
  text-align: center;
}

.trusted-by-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-by h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1c2b36;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}

/* Journey Sections */
.journey {
  background: #f8f9fa;
  padding: 100px 40px;
}

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

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

.journey-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.journey-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
}

.journey-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.journey-card li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.journey-card li:before {
  content: "•";
  color: #555;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.journey-btn {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: underline;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: opacity 0.3s;
  margin-top: auto;
}

.journey-btn:hover {
  opacity: 0.9;
}

.journey-btn-dark {
  background: #02665E;
}

.journey-btn-medium {
  background: #00b875;
}

.journey-btn-light {
  background: #00d084;
}

/* CTA Section */
.cta-section {
  background: #f8f9fa;
  color: #1c2b36;
  padding: 100px 40px;
}

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

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

.cta-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ribbon-graphic {
  width: 100%;
  max-width: 400px;
  height: auto;
  opacity: 0.9;
}

.cta-text {
  text-align: left;
}

.cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
}

.cta-text p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.6;
}

/* Community Section */
.community-section {
  background: white;
  padding: 80px 40px;
  border-top: 1px solid #e8f4f8;
}

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

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.community-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
}

.community-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.signup-form {
  max-width: 400px;
}

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

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.privacy-text {
  margin-bottom: 30px;
}

.privacy-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.privacy-link {
  color: #00d084;
  text-decoration: underline;
  font-weight: 500;
}

.privacy-link:hover {
  color: #00b875;
}

.submit-btn {
  background: #00d084;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: #00b875;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Video and Contact Section */
.video-contact-section {
  background: #f8f9fa;
  padding: 100px 40px;
}

.video-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Video Section */
.video-section {
  text-align: center;
}

.video-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b36;
}

.video-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.videos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
}

.demo-video {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.demo-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


/* Contact Section */
.contact-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c2b36;
}

.contact-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1c2b36;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

/* Checkbox Styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.form-checkbox {
  display: none;
}

.checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  background: white;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox:checked + .checkmark {
  background: #00d084;
  border-color: #00d084;
}

.form-checkbox:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-submit-btn {
  background: #00d084;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #00b875;
  transform: translateY(-1px);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* RollWorks Footer Section */
.rollworks-footer {
  background: #02665E;
  color: white;
  padding: 60px 40px;
}

.rollworks-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rollworks-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rollworks-logo .logo-icon {
  background: white;
  color: #02665E;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.rollworks-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00d084;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
  width: fit-content;
}

.footer-btn:hover {
  background: #00b875;
  transform: translateY(-1px);
}

.social-media {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.8;
}

.linkedin-text {
  font-size: 14px;
  font-weight: 500;
}

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

.footer-nav-column h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

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

.footer-nav-column li {
  margin-bottom: 12px;
}

.footer-nav-column a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav-column a:hover {
  color: #00d084;
}

/* Footer */
footer {
  background: #0f1a24;
  color: white;
  padding: 60px 40px 20px;
  position: relative;
  border-top: 2px solid #02665E;
  border-bottom: 2px solid #02665E;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Company Logos and Mission Statement */
.footer-logos {
  margin-bottom: 40px;
}

.nextroll-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.nextroll-logo .logo-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.sub-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.adroll-logo,
.rollworks-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adroll-icon {
  background: #4a90e2;
  color: white;
}

.rollworks-icon {
  background: #00d084;
  color: white;
}

.adroll-logo .logo-text,
.rollworks-logo .logo-text {
  font-size: 18px;
  font-weight: 600;
}

.mission-text {
  margin-bottom: 20px;
}

.mission-text p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.underlined {
  text-decoration: underline;
}

/* Navigation Links */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
}

.footer-nav a {
  color: #1c2b36;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00d084;
}

/* Copyright and Legal Information */
.footer-bottom {
  margin-bottom: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.footer-link {
  color: #1c2b36;
  text-decoration: underline;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #00d084;
}

/* Privacy Icon */
.privacy-icon {
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.privacy-circle {
  width: 32px;
  height: 32px;
  background: #02665E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.privacy-circle:hover {
  background: #00d084;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-card {
    padding: 30px 20px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .ribbon-graphic {
    max-width: 300px;
  }

  .community-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .community-text {
    text-align: center;
  }

  .signup-form {
    max-width: 100%;
  }

  .sub-logos {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .privacy-icon {
    position: static;
    text-align: center;
    margin-top: 20px;
  }

  .testimonial-carousel {
    min-height: 300px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .testimonial-quote {
    font-size: 16px;
    padding: 0 20px;
  }

  .testimonial-attribution {
    text-align: center;
    font-size: 14px;
  }

  .rollworks-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-buttons {
    align-items: center;
  }

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

  .social-media {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #ddd;
    margin-top: 0;
    min-width: auto;
  }

  .dropdown-content {
    flex-direction: column;
  }

      .dropdown-left,
      .dropdown-right {
        padding: 20px;
      }

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

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

      .videos-container {
        gap: 15px;
        max-width: 100%;
      }

      .demo-video {
        height: 250px;
      }

      .contact-section {
        padding: 30px 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .contact-submit-btn {
        width: 100%;
        padding: 14px 24px;
      }
    }
