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

/* System Font Stack */
:root {
  --font-display: "Baskerville", "Palatino", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-text: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #E5DCD3;
  color: #000000;
  font-family: var(--font-text);
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
}

h2 {
  font-weight: normal;
  text-align: justify;
}

header {
  text-align: center;
  background-color: #D8CEC2;
  color: #514D4A;
  padding: 1.6rem 1.6rem 2rem;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C5B8AE;
}

.hamburger-menu {
  position: absolute;
  left: 2rem;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
}

.bar {
  width: 24px;
  height: 1px;
  background-color: #48556B;
  margin: 5px 0;
  transition: 0.4s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background-color: #D5C8BE;
  transition: 0.4s;
  z-index: 99;
  padding-top: 6rem;
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #48556B;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav .menu-items {
  flex-direction: column;
  background: none;
  padding: 2rem;
}

main {
  background-color: #E5DCD3;
  padding: 0;
  flex: 1;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

main h2 {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0;
  color: #514D4A;
  font-size: 1.4rem;
  line-height: 1.6;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header h2 {
  max-width: 900px;
  margin: 0 auto;
}

.header-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: none;
}

.content-sections > h2:first-child {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #736F6A;
  background-color: #F5EFE8;
  padding: 2rem;
  border: 1px solid #D5C8BE;
  margin: 0 auto 3rem;
  max-width: 1100px;
}

h1 {
  font-size: 2.24rem;  /* Reduced by 20% from 2.8rem */
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: #48556B;
}

.menu-section {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.menu-items {
  background-color: #D4CAC0;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.menu-items h3,
.menu-items p {
  font-family: var(--font-display);
  font-weight: normal;
  color: #4A3C30;
  margin: 0;
}

.menu-items h3 a {
  color: #4A3C30;
  text-decoration: none;
}

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

.menu-items h3 a.active {
  color: #48556B;
}

.content-sections {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-block ul {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #736F6A;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.content-block a {
  color: #48556B;
  text-decoration: none;
  border-bottom: 1px solid #48556B;
}

.content-block a:hover {
  border-bottom: 2px solid #48556B;
}

.content-block h3 {
  color: #48556B;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: normal;
}

.content-block p {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #736F6A;
  margin-bottom: 1.5rem;
}

.content-block h3 {
  margin-top: 3rem;
}

.content-block h3:first-child {
  margin-top: 0;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.image-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.architecture-image, .floor-plan, .housing-view, .clarendon {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.architecture-image img, .floor-plan img, .housing-view img, .clarendon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.middle-column {
  background-color: #D4CAC0;
  padding: 1rem;
  text-align: center;
  flex: 0.5;
}

.middle-column h3,
.middle-column p,
.info-block h3,
.info-block p {
  font-family: var(--font-display);
  font-weight: normal;
  margin: 1rem 0;
  color: #4A3C30;
}

img {
  width: 100%;
  height: auto;
  filter: sepia(20%);
  object-fit: cover;
  image-rendering: optimizeSpeed;
  will-change: transform;
}

.header-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: none;
  image-rendering: optimizeQuality;
}

.architecture-image, .floor-plan, .housing-view, .clarendon {
  border: 1px solid #4A3C30;
  padding: 0.5rem;
  background-color: #F5EFE8;
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
  }

  section {
    width: 100%;
  }

  .footer-nav-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-left {
    text-align: center;
  }

  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    margin-top: 1rem;
  }

  .footer-copyright {
    margin-top: 0.5rem;
  }
}

footer {
  margin: 0 auto;
  padding: 2rem;
  background-color: #D8CEC2;
  text-align: center;
  width: 100%;
  position: relative;
  border-top: 1px solid #B5A89E;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  justify-content: center;
}

.footer-menu-column {
  padding-left: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu-column h4 {
  font-family: var(--font-display);
  color: #48556B;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.footer-menu-column a {
  font-family: var(--font-display);
  color: #48556B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-column a:hover {
  color: #736F6A;
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid #48556B;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #48556B;
  transition: background-color 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px !important;
}

.linkedin-icon, .instagram-icon, .twitter-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2348556B'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
  background-size: 16px !important;
  background-position: center;
  background-repeat: no-repeat;
}

.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2348556B'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

.twitter-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2348556B'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.footer-social a:hover {
  background-color: #48556B;
}

.footer-social a:hover.linkedin-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
  background-size: 16px;
}

.footer-social a:hover.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
  background-size: 16px;
}

.footer-social a:hover.twitter-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
  background-size: 16px;
}

.newsletter-signup {
  text-align: center;
}

.newsletter-signup h3 {
  font-family: var(--font-display);
  color: #48556B;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  text-align: left;
  width: 100%;
  margin: 0 0 1.5rem;
  display: block;
}

@media (max-width: 768px) {
  .footer-nav-container {
    grid-template-columns: 1fr;
  }
  
  .newsletter-signup {
    width: 100%;
    align-items: center;
  }
  
  .newsletter-signup h3 {
    text-align: center;
    width: 100%;
  }
  
  .newsletter-form {
    margin: 0 auto;
  }
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 280px;
  margin: 0;
}

.newsletter-input {
  width: 200px;
  padding: 0.8rem;
  border: 1px solid #48556B;
  background: transparent;
  font-family: var(--font-display);
  color: #48556B;
  text-align: center;
}

.newsletter-submit {
  padding: 0.8rem 2rem;
  width: 200px;
  border: 1px solid #48556B;
  background: #48556B;
  color: white;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: transparent;
  color: #48556B;
}

@media (max-width: 768px) {
  .footer-nav-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-nav-container > * {
    order: 3;
  }

  .footer-left {
    order: 1;
    text-align: center;
    align-items: center;
  }

  .newsletter-signup {
    order: 2;
    text-align: center;
  }

  .footer-title, .footer-address {
    text-align: center;
    align-items: center;
  }

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

  .newsletter-form {
    flex-direction: column;
    max-width: 200px;
    margin: 0 auto;
  }

  .newsletter-input,
  .newsletter-submit {
    width: 200px;
  }

  .footer-menu-column {
    text-align: center;
    padding-left: 0;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #48556B;
  font-weight: normal;
  margin: 0;
  white-space: nowrap;
}

.footer-address {
  font-family: var(--font-display);
  color: #48556B;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-copyright-section {
  padding: 0.5rem 0;
  width: 100%;
  margin-top: 1rem;
}

.footer-copyright {
  font-family: var(--font-display);
  color: #48556B;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

footer nav {
  color: #48556B;
}

footer a {
  font-family: var(--font-display);
  color: #48556B;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid #48556B;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #48556B;
  font-size: 0.8rem;
}

.page-title {
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #D5C8BE;
}

.page-title h2 {
  color: #736F6A;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
}

.content-sections > h2:first-child {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #736F6A;
  background-color: #F5EFE8;
  padding: 2rem;
  border: 1px solid #D5C8BE;
  margin-bottom: 3rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
}

.intro-section {
  padding: 2rem 3rem;
  background-color: #B8C5D0;
  display: flex;
  align-items: flex-start;
  padding-top: 2rem;
}

@media (max-width: 968px) {
  .hero-overview-section {
    grid-template-columns: 1fr;
  }

  .hero-section img {
    height: 50vh;
  }

  .intro-section {
    padding: 3rem 2rem;
  }
}

.hero-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-family: var(--font-display);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 100%;
  padding: 0 4rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  grid-column: 2;
  grid-row: 1;
  min-height: 250px;
}

.feature-card .text-content {
  grid-column: 1;
  grid-row: 1;
  max-width: 800px;
}

@media (max-width: 768px) {
  .features-grid {
    padding: 0 1rem;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .feature-image {
    grid-column: 1;
    grid-row: 1;
    height: 200px;
  }

  .feature-card .text-content {
    grid-column: 1;
    grid-row: 2;
  }
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #48556B;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-card h3 {
  color: #48556B;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: normal;
}

.feature-card p {
  font-family: var(--font-display);
  color: #736F6A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  color: #736F6A;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.4;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #48556B;
}

.learn-more {
  display: inline-block;
  color: #48556B;
  text-decoration: none;
  font-family: var(--font-display);
  margin-top: 1.5rem;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.learn-more:hover {
  border-bottom-color: #48556B;
}

.square-learn-more {
  margin-top: 3rem;
  font-size: 1.2rem;
}

/* Clarendon Square Section */
.clarendon-square-section {
  background: #B4C0AB;
  padding: 5rem 2rem 3rem;
  margin: 5rem 0 1rem 0;
  text-align: center;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.square-image {
  max-width: 1000px;
  margin: 3rem auto;
}

.square-image img {
  width: 100%;
  height: auto;
  border: 1px solid #C5B8AE;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.clarendon-square-section h2 {
  font-family: var(--font-display);
  color: #48556B;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.clarendon-square-section p {
  font-family: var(--font-display);
  color: #514D4A;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.square-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.square-feature {
  padding: 2.5rem;
  background: #E8F5EF;
  border: 1px solid #B8C5AE;
}

.square-feature h4 {
  color: #48556B;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: normal;
}

.square-feature p {
  font-family: var(--font-display);
  color: #736F6A;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

/* Latest News Section */
.latest-news-section {
  padding: 3rem 2rem 5rem;
}

.latest-news-section h2 {
  font-family: var(--font-display);
  color: #48556B;
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 2.5rem;
  font-weight: normal;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.news-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.news-preview {
  background-color: #F5EFE8;
  padding: 2rem;
  border: 1px solid #D5C8BE;
  display: flex;
  flex-direction: column;
}

.news-preview .news-date {
  color: #736F6A;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
}

.news-preview h3 {
  color: #48556B;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.3;
}

.news-preview p {
  color: #736F6A;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-preview .read-more {
  color: #48556B;
  text-decoration: none;
  font-family: var(--font-display);
  border-bottom: 1px solid #48556B;
  align-self: flex-start;
}

.news-preview .read-more:hover {
  border-bottom: 2px solid #48556B;
}

.view-all-news {
  display: inline-block;
  padding: 1rem 2rem;
  color: #48556B;
  text-decoration: none;
  border: 1px solid #48556B;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.view-all-news:hover {
  background: #48556B;
  color: white;
}


.intro-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-category {
  font-family: var(--font-display);
  color: #48556B;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.intro-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.7;
  color: #514D4A;
  margin: 0;
  font-weight: normal;
  text-align: justify;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .hero-overlay p {
    font-size: 1.4rem;
  }

  .main-intro {
    font-size: 1.3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

.header-inner h1 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: center;
  flex-grow: 1;
}

.header-inner h1 a {
  color: inherit;
  text-decoration: none;
}

.middle-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.middle-column h3 {
  text-align: center;
}

.middle-column p {
  text-align: center;
}

.middle-column img {
  margin-top: 1rem;
}

.footer-social {
  margin-top: 1rem;
}

.newsletter-form {
  flex-direction: column;
}

.newsletter-submit {
  margin-top: 1rem;
}

.lead-text {
  font-size: 1.4rem;
  color: #48556B;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-family: var(--font-display);
  text-align: justify;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #48556B;
  color: white;
  padding: 15px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-family: var(--font-display);
}

.cookie-consent-content a {
  color: #FFFFFF;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept-btn,
.cookie-reject-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-btn {
  background-color: #F5EFE8;
  color: #48556B;
}

.cookie-reject-btn {
  background-color: transparent;
  border: 1px solid #F5EFE8;
  color: #F5EFE8;
}

.cookie-accept-btn:hover {
  background-color: white;
}

.cookie-reject-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-accept-btn,
  .cookie-reject-btn {
    flex: 1;
  }
}
