/* CSS Reset and Base Styles */

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
}

/* Typography */
h1 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

h2 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #46ab46;
  margin: 0 0 1rem 0;
}

h3 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #46ab46;
  margin: 0 0 0.5rem 0;
}

p {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin: 0 0 1rem 0;
}

strong {
  font-weight: 700;
}

strong.green {
  color: #46ab46;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.full-width {
  width: 100%;
}

/* Header Styles */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 125px;
  padding: 0 64px;
  background-color: #ffffff;
}

.logo {
  width: 126px;
  height: 82px;
}

.utility-and-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-links a {
  font-size: 14px;
  color: #585454;
  text-decoration: underline;
  padding: 8px 4px;
}

.header-nav-items {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nowy system nawigacji - podkreślenie tylko pod tekstem */
.header-nav-items li {
  padding: 5px 4px;
  position: relative;
}

/* Usuń border-bottom z li i przenieś na link */
.header-nav-items li a {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #46ab46;
  transition: color 0.3s ease;
  border-bottom: 4px solid transparent;
  transition: border-bottom-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

/* Aktywny element ma niebieskie podkreślenie tylko pod tekstem */
.header-nav-items li.active a {
  border-bottom: 4px solid #1db4b7;
}

/* Hover effect TYLKO dla koloru tekstu, BEZ podkreślenia */
.header-nav-items li:hover a {
  color: #3a8f3a;
}

/* Usuń poprzedni hover effect z podkreśleniem */
/* .header-nav-items li:hover:not(.cta-item) a {
  border-bottom-color: #1db4b7;
} */

.header-nav-items li:hover a {
  color: #3a8f3a;
}

/* Style dla przycisku CTA - bez podkreślenia */
.header-nav-items li.cta-item a {
  border-bottom: none !important;
  background-color: #46ab46;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.header-nav-items li.cta-item a:hover {
  background-color: #3a8f3a;
  text-decoration: none;
}

/* Zachowaj stare style dla kompatybilności */
.nav-item {
  padding: 5px 4px;
  border-bottom: 4px solid #1db4b7;
}

.nav-item a {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #46ab46;
}

/* Style dla przycisku CTA */
.header-nav-items li.cta-item {
  border-bottom: none !important;
  padding: 0;
}

.cta-button,
.header-nav-items li:not(.nav-item) a.cta-button {
  background-color: #46ab46;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #3a8f3a;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  background-color: #f2f2f2;
  overflow: hidden;
  min-height: 352px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 722px;
  padding: 40px;
  background-color: #46ab46;
  text-align: center;
  order: 2;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .subtitle {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  margin: 0;
}

.hero-image {
  width: 598px;
  height: auto;
  object-fit: cover;
  order: 1;
}

.hero-divider {
  position: absolute;
  bottom: -41px;
  left: -9px;
  width: 100%;
  height: 102px;
}.obesity-map

.references-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 20px 0;
}

.references-list li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
  min-height: 20px;
}

/* Main Content Sections */
.content-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 20px;
}

@media (min-width: 768px) {
  .content-section {
    padding: 48px 50px;
  }
}

.content-section.tan {
  background-color: #f0f5da;
  width: 100%;
  max-width: none;
  padding: 100px 0;
}

.content-section.tan .container {
  max-width: 1440px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.content-section.tan.center-aligned .container {
  align-items: center;
}

.content-section.tan .text-content {
  flex: 2;
}

.content-section.tan .quote-content {
  flex: 1;
}

/* Icon Grid */
.icon-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.icon-item img {
  width: auto;
  height: 120px;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 7px 13px;
  background-color: #46ab46;
  color: #ffffff;
  border-radius: 6px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background-color: #3a8f3a;
  text-decoration: none;
}

.btn-large {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
}

/* Quote/Testimonial Box */
.quote-box {
  background-color: #ffffff;
  border: 2px solid #46ab46;
  border-bottom: 15px solid #46ab46;
  border-radius: 100px;
  padding: 40px 60px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.quote-box img {
  width: 123px;
  height: 94px;
  margin-bottom: 12px;
}

/* Two Column Layout */
.two-column {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.two-column .image-column {
  flex: 0 0 auto;
}

.two-column .content-column {
  flex: 1;
}

.two-column img {
  width: 272px;
  height: 362px;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Call to Action Section */
.cta-section {
  background-color: #f8fff8;
  border: 2px solid #46ab46;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 648px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-section.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 20px;
}

/* Booking Widget Section */
.booking-widget {
  background-color: #f8fff8;
  border: 2px solid #46ab46;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 648px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.booking-widget.fade-in {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.booking-widget iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  min-height: 600px;
}

/* Footer */
.footer {
  background-color: #0a7038;
  color: #ffffff;
  padding: 60px 0 40px;
  border-top: 1px solid #dddddd;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1072px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo-section {
  flex: 0 0 200px;
}

.footer-logo {
  height: 60px;
}

.footer-nav-section {
  flex: 1;
  max-width: 572px;
}

.footer-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
}

.footer-nav a {
  font-family: "Centra No2-Medium", Arial, sans-serif;
  font-size: 12px;
  color: #c7d9e7;
  font-weight: 500;
}

.footer-copyright {
  font-family: "Centra No2-Medium", Arial, sans-serif;
  font-size: 12px;
  color: #c7d9e7;
  margin: 0;
}

.footer-social-section {
  flex: 0 0 270px;
  display: flex;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: block;
  width: 20px;
  height: 20px;
}

/* References */
.references {
  font-size: 14px;
  color: #333333;
  text-align: left;
  margin: 30px 0;
  padding: 0 20px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .utility-and-main {
    width: 100%;
    margin-top: 20px;
  }

  .header-nav-items {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  /* Na mobile aktywny element również ma podkreślenie tylko pod tekstem */
  .header-nav-items li.active a {
    border-bottom: 4px solid #1db4b7;
  }

  /* Dodatkowe style dla lepszej widoczności na mobile */
  .header-nav-items li {
    width: 100%;
    text-align: center;
    padding: 0px 4px;
  }

  .header-nav-items li a {
    display: inline-block;
    padding: 0px 0;
  }

  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-content {
    width: 100%;
    height: auto;
    padding: 40px 20px 100px;
    order: 2;
  }

  .hero-image {
    width: 100%;
    height: auto;
    order: 1;
  }

  .hero-divider {
    width: 180%;
    bottom: -3px;
    left: -10px;
	  height:auto;
  }

  .icon-grid {
    flex-direction: column;
    align-items: center;
  }

  .two-column {
    flex-direction: column;
  }

  .two-column img {
    width: 100%;
    max-width: 272px;
    height: auto;
  }

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

  .footer-logo-section {
    flex: none;
  }

  .footer-social-section {
    flex: none;
  }

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

  .footer-social-section {
    justify-content: center;
  }

  .content-section.tan .container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Getting Started Page Specific Styles */
.getting-started .nav-item {
  border-bottom: 4px solid #1db4b7;
}

.getting-started .hero-content {
  min-height: 350px;
}

/* Page Navigation */
.page-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Patient Steps */
.patient-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.step-item, .pillar-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 24px 0;
}

.step-item img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 20px;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-top: 40px;
}

.product-item {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* App Showcase */
.app-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 50px;
  padding: 50px;
  background-color: #ffffff;
  border: 2px solid #46ab46;
  border-radius: 100px;
  max-width: 1025px;
  margin-left: auto;
  margin-right: auto;
	border-bottom:14px solid #46ab46;
}

.app-image {
  width: 187px;
  height: 187px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-content {
  flex: 1;
}

.app-content h2 {
  margin-bottom: 12px;
}

/* App Features */
.app-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 300px;
}

.feature-item img {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
}

.feature-item h3 {
  margin-bottom: 8px;
}

/* Dual CTA */
.dual-cta {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.dual-cta .cta-section {
  flex: 1;
  max-width: 50%;
}

.cta-section.secondary {
  background-color: #f8fff8;
  border: 2px solid #46ab46;
}

/* Exclusive Heading */
.exclusive-heading {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #0a7038;
  text-align: center;
  margin-bottom: 12px;
}







  

@media (max-width: 480px) {
  .modal-btn {
    min-width: 200px;
    font-size: 12px;
    padding: 15px 15px;
  }
  
  .disclaimer-text {
    font-size: 14px;
  }
	
	

.dual-cta .cta-section {
  flex: 1;
  max-width: 100%;
}
}

/* Responsive Design for Getting Started */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .app-showcase {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .app-features {
    flex-direction: column;
    align-items: center;
  }
  
  .dual-cta {
    flex-direction: column;
  }
  
  .product-grid {
    gap: 15px;
  }
  
  .product-item {
    width: 100px;
    height: 100px;
  }
}



/* Resources Page Specific Styles */
.resources .nav-item {
  border-bottom: 4px solid #1db4b7;
}

/* Resource Cards */
.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 0;
}

.resource-card img {
  width: 155px;
  max-width: 155px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.resource-content {
  flex: 1;
}

.resource-content h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

/* Webinar Section */
.webinar-section {
  padding: 60px 0;
}

.webinar-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 50px;
  background-color: #ffffff;
  border: 1px solid #46AB46;
  border-bottom: 15px solid #46AB46;
  border-radius: 40px 40px 0 40px;
  max-width: 1088px;
  margin: 0 auto;
}

.webinar-image {
  width: 330px;
  height: 316px;
  object-fit: cover;
  flex-shrink: 0;
}

.webinar-content {
  flex: 1;
}

.webinar-content h2 {
  margin-bottom: 12px;
}

.webinar-content p {
  margin-bottom: 12px;
}

.webinar-content p:last-of-type {
  margin-bottom: 20px;
}

/* Starter Kit Section */
.starter-kit-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.starter-kit-content {
  flex: 1;
}

.starter-kit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.starter-kit-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.starter-kit-list li:before {
  content: "•";
  color: #46AB46;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.inline-link {
  color: #146314;
  text-decoration: underline;
}

.inline-link:hover {
  color: #46AB46;
}

.starter-kit-image {
  flex: 0 0 40%;
}

.starter-kit-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Design for Resources */
@media (max-width: 768px) {
	
	.strategy img
	{
		margin:0 auto;
	}
  .resource-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .resource-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }
  
  .webinar-showcase {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .webinar-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  
  .starter-kit-layout {
    flex-direction: column;
  }
  
  .starter-kit-image {
    flex: none;
    text-align: center;
  }
}
.content-section.tan .container.flex-column{flex-direction:column; gap:0;}
.container.flex-column{flex-direction:column; gap:0;}
