/* style-40mini-1.css */

/* Import your Google Font(s) here */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Header + Top Menu */
header {
  background-color: #23562E;
  padding: 20px;
  text-align: center;
  position: relative;
}

header img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.top-menu ul {
  list-style: none;
  display: inline-block;
}

.top-menu li {
  display: inline;
  margin: 0 15px;
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.top-menu a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  display: flex;
  min-height: calc(100vh - 160px);
}

/* Side Navigation */
.side-nav {
  width: 200px;
  background: #f4f4f4;
  padding: 20px;
}

.side-nav ul {
  list-style: none;
}

.side-nav li + li {
  margin-top: 10px;
}

.side-nav a {
  color: #23562E;
  text-decoration: none;
  font-weight: 500;
}

.side-nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #23562E;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.hero p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.hero .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #23562E;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.hero .btn:hover {
  background: #eaeaea;
}

/* Blog Teaser Section */
.blog-teaser {
  background-color: #eef5ec;
  padding: 40px 20px;
}

.blog-teaser h2 {
  color: #23562E;
  margin-bottom: 25px;
  text-align: center;
}

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

.teaser {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.teaser h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.teaser p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.teaser a {
  color: #23562E;
  text-decoration: none;
  font-weight: 700;
}

.teaser a:hover {
  text-decoration: underline;
}

/* Main Content */
main section h1,
main section h2,
main section h3 {
  margin-bottom: 15px;
  color: #23562E;
}

main section p {
  margin-bottom: 20px;
}

/* Styled Links */
a {
  color: #23562E;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-color: #23562E;
}

/* Styled Lists */
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

ul li, ol li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  background: #f4f4f4;
  color: #555;
}
