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

body {
    font-family: 'Inter', sans-serif;
    color: #013237; 
    line-height: 1.6;
    
    
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #fff;
    
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #013237;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign-in {
    text-decoration: none;
    color: #013237;
}


.btn-green {
    background-color: #015151; 
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-green.large {
    padding: 15px 40px;
    display: inline-block;
    margin-top: 20px;
}

.btn-green:hover {
    background-color: #027a7a;
}

.hero-section {
    display: flex;
    background-repeat:no-repeat;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%;
    min-height: 80vh;
    background-image: url(./images/12.png)
    
    
}

.hero-content {
    flex: 1;
    
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #015151;
}

.hero-content p {
    font-size: 18px;
    color: #4f4f4f;
    max-width: 450px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    nav {
        display: none; 
    }
}


.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.sub-label {
    color: #015151;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.section-header h2 {
    font-family: 'Georgia', serif;
    font-size: 40px;
    color: #015151;
    margin-top: 10px;
}

.header-desc {
    max-width: 480px;
    color: #4f4f4f;
    font-size: 16px;
    line-height: 1.6;
}

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

.step-card {
    position: relative;
}

.bg-number {
    font-family: 'Georgia', serif;
    font-size: 100px;
    color: rgba(1, 81, 81, 0.08); 
    line-height: 1;
    margin-bottom: -40px;
}

.step-card h3 {
    font-size: 24px;
    color: #013237;
    margin-bottom: 15px;
    position: relative;
}

.step-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.step-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}


.offset-down {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .offset-down {
        margin-top: 0;
    }
}





.success-story {
    background-color: #015151; 
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

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

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: 'Georgia', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

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


.btn-primary {
    display: inline-block;
    background-color: #00c38e; 
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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


.story-video {
    flex: 1.2;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-thumbnail img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #015151;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 992px) {
    .story-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .story-content h2 {
        font-size: 32px;
    }
    
    .video-thumbnail img {
        height: 300px;
    }
}



.our-product {
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #013237;
}

.product-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 20px;
}


.product-image-side {
  flex: 1;
  position: relative;
}

.main-image {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.main-image > img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -40px;
  left: -30px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  width: 240px;
}

.card-title {
  font-size: 12px;
  color: #828282;
  text-transform: uppercase;
}

.user-info {
  margin: 15px 0;
  text-align: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  font-size: 13px;
}

.card-list li::before {
  content: "•";
  color: #015151;
  margin-right: 8px;
}

.product-text-side {
  flex: 1;
}

.label {
  font-size: 14px;
  font-weight: 600;
  color: #015151;
}

.product-text-side h2 {
  font-family: 'Georgia', serif;
  font-size: 40px;
  margin: 15px 0 25px;
  line-height: 1.2;
}

.product-text-side p {
  color: #4f4f4f;
  margin-bottom: 35px;
  line-height: 1.6;
}

.btn-green {
  background-color: #015151;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.btn-green:hover {
  background-color: #027a7a;
}


@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }
  .floating-card {
    position: static;
    margin: 20px auto 0;
  }
  .product-image-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}   



.site-footer {
    background-color: #015151; 
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}


.footer-logo {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    cursor: default;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 25px; 
}

.footer-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav ul li a:hover {
    opacity: 0.7; 
}


@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0;
        text-align: center;
    }
    .footer-container {
        align-items: center; 
    }
}