
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700;900&display=swap');
:root { --bg: #e0f7fa; --text: #004d40; --ocean: #00838f; --light: #b2ebf2; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text); margin: 0; padding: 0; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
header { position: sticky; top: 0; z-index: 1000; background: rgba(224,247,250,0.9); backdrop-filter: blur(10px); border-bottom: 2px solid var(--light); display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; box-shadow: 0 4px 15px rgba(0,131,143,0.1); }
.logo { display: flex; align-items: center; gap: 10px; font-size: 2rem; font-weight: 900; color: var(--ocean); text-decoration: none; }
.logo svg { width: 40px; height: 40px; fill: var(--ocean); }
nav { display: flex; gap: 20px; align-items: center; }
nav a { color: var(--text); text-decoration: none; font-weight: 700; transition: 0.3s; }
nav a:hover { color: var(--ocean); }
.hero { padding: 120px 0 200px 0; text-align: center; position: relative; background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%); }
.wave-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; overflow: hidden; }
.hero-yacht { position: absolute; bottom: 40px; left: -100px; width: 80px; height: 80px; fill: var(--ocean); animation: sailAcross 15s linear infinite, yachtBob 3s ease-in-out infinite; z-index: 10; }
@keyframes sailAcross { 0% { left: -10%; } 100% { left: 110%; } }
@keyframes yachtBob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-15px) rotate(3deg); } }
h1 { font-size: 4rem; font-weight: 900; color: var(--ocean); margin-bottom: 20px; }
p.lead { font-size: 1.3rem; max-width: 600px; margin: 0 auto 40px; color: #00695c; }
.btn { display: inline-block; padding: 15px 35px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; z-index: 20; position: relative; }
.btn-primary { background: linear-gradient(45deg, #00838f, #00bcd4); color: #fff; box-shadow: 0 5px 15px rgba(0,188,212,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,188,212,0.6); }
.btn-alt { background: #fff; color: var(--ocean); margin-left: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.section { padding: 80px 0; background: #fff; position: relative; z-index: 5; }
h2 { text-align: center; font-size: 2.5rem; color: var(--ocean); margin-bottom: 50px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: var(--light); padding: 40px; border-radius: 20px; text-align: center; transition: 0.3s; }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,131,143,0.1); }
.card-icon { height: 60px; margin-bottom: 20px; }
.card-icon svg { width: 50px; height: 50px; fill: var(--ocean); }
.pricing-card { background: #fff; border: 2px solid var(--light); border-radius: 20px; padding: 40px; text-align: center; transition: 0.3s; }
.pricing-card.popular { border-color: var(--ocean); background: var(--light); box-shadow: 0 10px 30px rgba(0,131,143,0.2); }
.price { font-size: 3.5rem; font-weight: 900; color: var(--ocean); margin: 20px 0; }
.features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.features li { padding: 10px 0; border-bottom: 1px solid rgba(0,77,64,0.1); }
footer { background: var(--ocean); color: #fff; padding: 50px 0; text-align: center; }
.footer-links a { color: var(--light); margin: 0 15px; font-weight: 700; text-decoration: none; }
/* Article custom style for lat */
.seo-content, .article-body { background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%); border: 3px solid #b2ebf2; padding: 60px; margin-top: 60px; border-radius: 50px; box-shadow: 0 15px 35px rgba(0,131,143,0.1); position: relative; overflow: hidden; }
.seo-content::after, .article-body::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; background: rgba(0,188,212,0.1); z-index:0; pointer-events:none;}
.seo-content h2, .article-body h2 { font-size: 2.8rem; color: var(--ocean); text-align: center; margin-bottom: 40px; position:relative; z-index:1;}
.seo-content h3, .article-body h3 { font-size: 1.8rem; color: var(--ocean); margin-top: 40px; border-left: 5px solid var(--ocean); padding-left: 15px; border-bottom: none; position:relative; z-index:1;}
.seo-content p, .article-body p { font-size: 1.15rem; line-height: 1.8; color: #004d40; position:relative; z-index:1;}
.article-body a, .seo-content a { color: var(--ocean); font-weight: 900; text-decoration: underline; position:relative; z-index:1;}
.article-body a:visited, .seo-content a:visited { color: var(--ocean); }
.article-body a:hover, .seo-content a:hover { color: #00bcd4; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 10px;
    gap: 15px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  nav a {
    white-space: nowrap;
    font-size: 0.95rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  p.lead {
    font-size: 1.05rem;
    padding: 0 15px;
  }
  .hero {
    padding: 40px 0 120px 0;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 30px;
  }
  .btn-alt {
    margin-left: 0;
  }
  .hero-actions .btn {
    width: 100%;
    box-sizing: border-box;
  }
  .section {
    padding: 50px 0;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .price {
    font-size: 2.5rem;
  }
  .pricing-card {
    padding: 30px 20px;
  }
  .seo-content, .article-body {
    padding: 30px 20px;
    border-radius: 25px;
    margin-top: 30px;
  }
  .seo-content h2, .article-body h2 {
    font-size: 2rem;
  }
  .hero-yacht {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }
}