/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === NAVBAR === */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); height: 64px; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-size: 22px; font-weight: 800; color: #1a73e8; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo span { color: #ff6b35; }
.logo-icon { flex-shrink: 0; }
.logo-img { display:block; height:auto; width:160px; opacity:0.85; }

/* Nav right group */
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-menu > li { list-style: none; }
.nav-menu a { font-size: 13px; font-weight: 600; color: #555; letter-spacing: 0.3px; padding: 8px 14px; border-radius: 8px; transition: all 0.25s ease; position: relative; }
.nav-menu > li > a:hover { background: #f0f4ff; color: #1a73e8; }
.nav-menu > li > a.active { background: #e8f0fe; color: #1a73e8; }
.nav-menu > li > a.active::after { display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown .dropdown-toggle .chevron { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-dropdown:hover .dropdown-toggle .chevron { transform: rotate(180deg); }
.nav-dropdown .dropdown-menu { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(4px); background: white; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02); padding: 6px; min-width: 210px; opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); z-index: 100; }
.nav-dropdown .dropdown-menu li { list-style: none; }
.nav-dropdown .dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #555; white-space: nowrap; transition: all 0.2s ease; }
.nav-dropdown .dropdown-menu a span { font-size: 16px; flex-shrink: 0; }
.nav-dropdown .dropdown-menu a:hover { background: #f0f4ff; color: #1a73e8; }
.nav-dropdown .dropdown-menu a.active { background: #e8f0fe; color: #1a73e8; }
.nav-dropdown .dropdown-menu a.active::after { display: none; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.nav-cta { background: #1a73e8; color: white !important; padding: 9px 22px; border-radius: 8px; font-weight: 600; font-size: 13px; transition: all 0.25s ease; flex-shrink: 0; }
.nav-cta:hover { background: #1557b0; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,115,232,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: 8px; }
.hamburger span { width: 22px; height: 2px; background: #444; border-radius: 2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: block; }
.hamburger span:nth-child(1) { transform-origin: 0 0; }
.hamburger span:nth-child(3) { transform-origin: 0 100%; }
.navbar.open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.navbar.open .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-4px); }
.navbar.open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(1px, 0); }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 100px 20px 20px; }
.hero-home {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/bgphone.jpeg');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.hero-page { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); min-height: 50vh; padding: 120px 20px 60px; }

/* === PAGE BANNER === */
.page-banner {
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,0.7), rgba(22,33,62,0.5));
  z-index: 0;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: white;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 720px; }
.hero-content h1 { font-size: 48px; font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.hero-content h1 .gradient { background: linear-gradient(135deg, #1a73e8, #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.hero-page .hero-content h1 { font-size: 38px; }
.hero-page .hero-content p { font-size: 16px; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, #1a73e8, #1557b0); color: white; box-shadow: 0 8px 30px rgba(26,115,232,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,115,232,0.45); }
.btn-wa { background: #25D366; color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.btn-lg { padding: 16px 44px; font-size: 16px; }

/* === SECTION === */
.section { padding: 80px 20px; }
.section-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.section-subtitle { text-align: center; font-size: 16px; color: #666; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-label { text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 2px; color: #1a73e8; text-align: center; margin-bottom: 8px; }
.section-bg { background: #f8f9fc; }

/* === FEATURES GRID === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.feature-card { background: white; border-radius: 16px; padding: 32px 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.feature-card .icon { width: 64px; height: 64px; margin: 0 auto 16px; background: linear-gradient(135deg, #e8f0fe, #d2e3fc); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* === WHY US SECTION === */
.why-us-section { background-size: cover; background-position: center; position: relative; }
.why-us-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0; }
.why-us-section > * { position: relative; z-index: 1; }
.why-us-section .section-title { color: #fff; }
.why-us-section .section-subtitle { color: rgba(255,255,255,0.75); }
.why-us-section .section-label { color: #90b4f5; }

/* === ABOUT === */
.about-text { max-width: 720px; margin: 0 auto; text-align: center; font-size: 16px; line-height: 1.9; color: #555; }
.about-text em { color: #1a73e8; font-style: normal; font-weight: 600; }
.about-text strong { color: #1a1a2e; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.service-card { background: white; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; border: 1px solid #f0f0f0; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: #e0e8ff; }
.service-card .service-img { margin:0 auto 8px; width:160px; height:auto; border-radius:12px; overflow:hidden; }
.service-card .service-img img { width:100%; height:auto; display:block; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.service-card p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }
.service-card .price { display: inline-block; background: #e8f0fe; color: #1a73e8; font-weight: 700; font-size: 13px; padding: 4px 14px; border-radius: 20px; }
.service-card .btn-sm { padding: 8px 20px; font-size: 12px; margin-top: 12px; display: inline-block; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.testimonial-card { background: white; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.testimonial-card .stars { color: #ffb800; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #e8f0fe, #d2e3fc); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #1a73e8; font-size: 18px; flex-shrink: 0; }
.testimonial-card .author-info h4 { font-size: 15px; font-weight: 600; color: #1a1a2e; }
.testimonial-card .author-info span { font-size: 13px; color: #888; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-card .thumb { background: linear-gradient(135deg, #e8f0fe, #d2e3fc); display: flex; align-items: center; justify-content: center; font-size: 36px; color: #1a73e8; overflow: hidden; }
.blog-card .thumb img { width:100%; display:block; max-height:400px; object-fit:contain; }
.blog-card .body { padding: 24px; }
.blog-card .meta { font-size: 12px; color: #888; margin-bottom: 10px; }
.blog-card .meta .category { color: #1a73e8; font-weight: 600; }
.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: #1a1a2e; transition: color 0.3s; }
.blog-card h3 a:hover { color: #1a73e8; }
.blog-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* Blog Carousel */
.blog-carousel-wrap { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 50px; }
.blog-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 8px 4px 16px; }
.blog-carousel::-webkit-scrollbar { height: 6px; }
.blog-carousel::-webkit-scrollbar-track { background: #e8e8e8; border-radius: 3px; }
.blog-carousel::-webkit-scrollbar-thumb { background: #1a73e8; border-radius: 3px; }
.blog-carousel .blog-card { flex: 0 0 calc(50% - 10px); min-width: 300px; scroll-snap-align: start; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: none; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.12); cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; color: #1a1a2e; transition: all 0.2s; }
.carousel-btn:hover { background: #1a73e8; color: white; box-shadow: 0 4px 16px rgba(26,115,232,0.3); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.2s; }
.carousel-dots span.active { background: #1a73e8; width: 24px; border-radius: 4px; }

/* === BLOG DETAIL === */
.blog-detail { max-width: 720px; margin: 0 auto; padding: 40px 20px; }
.blog-detail .meta { font-size: 14px; color: #888; margin-bottom: 24px; }
.blog-detail h1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; color: #1a1a2e; }
.blog-detail .content { font-size: 16px; line-height: 1.9; color: #444; }
.blog-detail .content h2 { font-size: 24px; font-weight: 700; margin: 32px 0 16px; color: #1a1a2e; }
.blog-detail .content h3 { font-size: 20px; font-weight: 600; margin: 24px 0 12px; color: #1a1a2e; }
.blog-detail .content p { margin-bottom: 16px; }
.blog-detail .content ul, .blog-detail .content ol { margin: 16px 0; padding-left: 24px; }
.blog-detail .content li { margin-bottom: 8px; }
.blog-detail .content strong { color: #1a1a2e; }

/* === CONTENT PAGE (Garansi, Home Service, etc) === */
.content-page { max-width:720px; margin:0 auto; padding:20px; font-size:16px; line-height:1.9; color:#444; }
.content-page h2 { font-size:26px; font-weight:700; margin:36px 0 16px; color:#1a1a2e; }
.content-page h3 { font-size:20px; font-weight:600; margin:28px 0 12px; color:#1a1a2e; }
.content-page p { margin-bottom:16px; }
.content-page ul, .content-page ol { margin:16px 0; padding-left:24px; }
.content-page li { margin-bottom:8px; }
.content-page strong { color:#1a1a2e; }

/* === CTA === */
.cta-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); text-align: center; padding: 80px 20px; }
.cta-content { max-width: 560px; margin: 0 auto; }
.cta-section h2 { font-size: 32px; font-weight: 700; color: white; margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* === FOOTER === */
.footer { background: #1a1a2e; padding: 60px 20px 30px; color: rgba(255,255,255,0.8); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; align-items: start; }
.footer h3 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.3s; }
.footer ul a:hover { color: #1a73e8; }
.footer-map { line-height: 0; }
.footer-map iframe { max-width: 100%; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-contact { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact .contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact .contact-item svg { flex-shrink: 0; opacity: 0.5; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
.social-links a:hover { transform: translateY(-3px); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.social-links a.soc-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.soc-facebook:hover { background: #1877f2; }
.social-links a.soc-tiktok:hover { background: #111; }
.social-links a.soc-whatsapp:hover { background: #25d366; }

/* === LOCATION === */
.stores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.store-card { background: white; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; }
.store-card h3 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.store-card p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 6px; }
.store-card .label { font-weight: 600; color: #333; }
.store-card .wa-link { display: inline-block; margin-top: 12px; padding: 10px 24px; background: #25D366; color: white; border-radius: 8px; font-weight: 600; font-size: 13px; transition: background 0.3s; }
.store-card .wa-link:hover { background: #1da851; }

/* === 3D FEATURES === */
.features-3d-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.feature-3d-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; }
.feature-3d-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.feature-3d-card .preview { height: 300px; background: linear-gradient(135deg, #f0f4ff, #e0e8ff); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.feature-3d-card .body { padding: 24px; }
.feature-3d-card .body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.feature-3d-card .body p { font-size: 14px; color: #666; line-height: 1.7; }

/* === HERO BADGE === */
.hero-badge { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.hero-badge .dot { width: 5px; height: 5px; background: #1a73e8; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* === THREE.JS === */
/* (removed - no longer using 3D canvas) */

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-carousel .blog-card { flex: 0 0 calc(50% - 10px); }
  .features-3d-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map iframe { height: 120px; }
  .hero-content h1 { font-size: 36px; }
  .hero-page .hero-content h1 { font-size: 30px; }
  .page-banner { min-height: 260px; padding: 100px 20px 40px; }
  .page-banner h1 { font-size: 30px; }
  .stores-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-right .nav-cta { display: none; }
  .nav-right { gap: 0; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: white; padding: 12px 16px; box-shadow: 0 12px 32px rgba(0,0,0,0.1); gap: 2px; max-height: calc(100vh - 64px); overflow-y: auto; }
  .nav-menu > li > a { padding: 10px 12px; border-radius: 8px; }
  .navbar.open .nav-menu { display: flex; animation: slideDown 0.25s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .hamburger { display: flex; }
  .nav-dropdown { position: relative; }
  .nav-dropdown .dropdown-menu { position: static; transform: none; background: #f8f9fc; border-radius: 10px; box-shadow: none; opacity: 1; visibility: visible; padding: 4px; margin: 2px 0 4px 8px; min-width: auto; display: none; transition: none; }
  .nav-dropdown.open .dropdown-menu { display: block; animation: slideDown 0.2s ease; }
  .nav-dropdown .dropdown-menu a { font-size: 12px; padding: 8px 12px; border-radius: 6px; }
  .navbar.open .nav-dropdown .dropdown-menu { display: none; }
  .navbar.open .nav-dropdown.open .dropdown-menu { display: block; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .blog-carousel .blog-card { flex: 0 0 85%; }
  .blog-carousel-wrap { padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 16px; }
  .hero-content h1 { font-size: 28px; }
  .hero-home { background-size: cover !important; background-position: center !important; }
  .hero-page .hero-content h1 { font-size: 24px; }
  .page-banner { min-height: 220px; padding: 80px 16px 30px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 14px; }
  .nav-container { padding: 0 16px; }
  .hero-page { min-height: 40vh; padding: 100px 16px 40px; }
  .section-title { font-size: 26px; }
}
