        html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "DM Sans", sans-serif;
      background: #ffffff;
      color: #333;
      overflow-x: hidden;
    }

    .lobster-two-regular {
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
    }

    .lobster-two-bold {
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
    }

    .lobster-two-regular-italic {
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
      font-style: italic;
    }

    .lobster-two-bold-italic {
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
      font-style: italic;
    }

    .dm-sans {
      font-family: "DM Sans", sans-serif;
      font-weight: 400;
    }

    .dm-sans-bold {
      font-family: "DM Sans", sans-serif;
      font-weight: 700;
    }

    .dm-sans-italic {
      font-family: "DM Sans", sans-serif;
      font-weight: 400;
      font-style: italic;
    }

    /* Color System */
    :root {
      --primary-red: #BF092F;
      --accent-blue: #FF9D00;
      --cream: #BADFDB;
      --dark: #1a1a1a;
      --light-gray: #F0EDE8;
    }

    /* Header & Navigation */
    .navbar {
      background: #fff;
      border-bottom: 1px solid var(--light-gray);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.95);
    }

    .nav-brand {
      color: var(--primary-red);
      font-size: 28px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .nav-brand:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: var(--primary-red);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--primary-red);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-primary {
      background: var(--accent-blue);
      color: white;
      padding: 10px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--primary-red);
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(158, 42, 58, 0.2);
    }

    .btn-logout {
      background: var(--primary-red);
      color: white;
      padding: 10px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-logout:hover {
      background: var(--accent-blue);
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(255, 157, 0, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary-red);
      border: 2px solid var(--primary-red);
      padding: 10px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
      display: inline-block;
    }

    .btn-secondary:hover {
      background: var(--primary-red);
      color: white;
      transform: translateY(-2px);
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 999;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu a {
      color: white;
      font-size: 24px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
      color: var(--accent-blue);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--dark);
      font-size: 24px;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: 0;
      animation: zoomIn 20s ease-in-out infinite alternate;
    }

    @keyframes zoomIn {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.05);
      }
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      max-width: 900px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: clamp(48px, 8vw, 90px);
      line-height: 1.1;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out 0.1s both;
    }

    .hero-subtitle {
      font-size: clamp(18px, 3vw, 28px);
      margin-bottom: 40px;
      opacity: 0.95;
      animation: fadeInUp 1s ease-out 0.2s both;
      font-weight: 300;
      letter-spacing: 1px;
    }

    .hero-cta {
      animation: fadeInUp 1s ease-out 0.3s both;
    }

    /* Featured Articles Section */
    .featured-articles {
      padding: 80px 20px;
      background: white;
    }

    .section-title {
      font-size: clamp(36px, 5vw, 56px);
      color: var(--primary-red);
      margin-bottom: 20px;
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      color: var(--accent-blue);
      font-size: 18px;
      margin-bottom: 60px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .article-card {
      background: var(--cream);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(158, 42, 58, 0.15);
    }

    .article-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .article-card:hover .article-image {
      transform: scale(1.05);
    }

    .article-content {
      padding: 30px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .article-tag {
      color: var(--accent-blue);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 24px;
      color: var(--primary-red);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .article-excerpt {
      color: #666;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .article-date {
      color: #999;
      font-size: 13px;
      margin-bottom: 16px;
    }

    .read-more {
      color: var(--accent-blue);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .read-more:hover {
      color: var(--primary-red);
      transform: translateX(4px);
    }

    /* Creative Projects Section */
    .creative-projects {
      padding: 80px 20px;
      background: var(--light-gray);
    }

    .projects-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .project-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 80px;
      animation: fadeIn 0.8s ease-out;
    }

    .project-row.reverse {
      direction: rtl;
    }

    .project-row.reverse > * {
      direction: ltr;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .project-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      height: 400px;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .project-image:hover img {
      transform: scale(1.08);
    }

    .project-content h3 {
      font-size: 42px;
      color: var(--primary-red);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .project-category {
      color: var(--accent-blue);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 16px;
      display: block;
    }

    .project-description {
      color: #666;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    /* Testimonials/Reviews Section */
    .reviews-section {
      padding: 80px 20px;
      background: white;
    }

    .reviews-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .review-card {
      background: var(--cream);
      padding: 40px;
      border-radius: 12px;
      border-left: 4px solid var(--accent-blue);
      transition: all 0.3s ease;
      position: relative;
    }

    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(90, 122, 205, 0.15);
      border-left-color: var(--primary-red);
    }

    .review-quote {
      font-size: 40px;
      color: var(--accent-blue);
      opacity: 0.3;
      position: absolute;
      top: 10px;
      left: 20px;
    }

    .review-text {
      color: #555;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-author {
      font-weight: 700;
      color: var(--primary-red);
      font-size: 15px;
    }

    .review-role {
      color: var(--accent-blue);
      font-size: 13px;
      margin-top: 4px;
    }

    /* Opinion Section */
    .opinion-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--primary-red) 0%, rgba(158, 42, 58, 0.9) 100%);
      color: white;
    }

    .opinion-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .opinion-title {
      font-size: clamp(36px, 5vw, 56px);
      margin-bottom: 30px;
      line-height: 1.2;
    }

    .opinion-text {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 40px;
      opacity: 0.95;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .opinion-author {
      font-weight: 700;
      font-size: 16px;
      opacity: 0.9;
    }

    /* Newsletter Section */
    .newsletter-section {
      padding: 80px 20px;
      background: white;
    }

    .newsletter-container {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-title {
      font-size: clamp(36px, 5vw, 48px);
      color: var(--primary-red);
      margin-bottom: 20px;
    }

    .newsletter-subtitle {
      color: #666;
      font-size: 16px;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 200px;
      padding: 14px 20px;
      border: 2px solid var(--light-gray);
      border-radius: 8px;
      font-family: "DM Sans", sans-serif;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px rgba(90, 122, 205, 0.1);
    }

    .newsletter-submit {
      padding: 14px 36px;
      background: var(--accent-blue);
      color: white;
      border: none;
      border-radius: 8px;
      font-family: "DM Sans", sans-serif;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .newsletter-submit:hover {
      background: var(--primary-red);
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(158, 42, 58, 0.2);
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 60px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-column h4 {
      color: var(--accent-blue);
      font-size: 18px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary-red);
      margin-bottom: 20px;
    }

    .footer-description {
      color: #ccc;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--accent-blue);
      padding-left: 4px;
    }

    .footer-social {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(90, 122, 205, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-blue);
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid var(--accent-blue);
    }

    .social-icon:hover {
      background: var(--accent-blue);
      color: white;
      transform: translateY(-3px);
    }

    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-legal {
      color: #888;
      font-size: 13px;
    }

    .footer-legal a {
      color: var(--accent-blue);
      text-decoration: none;
      transition: color 0.3s ease;
      margin: 0 12px;
    }

    .footer-legal a:hover {
      color: var(--primary-red);
    }

    /* Content Pages */
    .content-page {
      display: none;
      padding: 60px 20px;
      background: white;
    }

    .content-page.active {
      display: block;
      animation: fadeIn 0.5s ease-out;
    }

    .content-header {
      max-width: 900px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .content-header h1 {
      font-size: 48px;
      color: var(--primary-red);
      margin-bottom: 16px;
    }

    .content-header p {
      font-size: 18px;
      color: #666;
      line-height: 1.6;
    }

    .content-body {
      max-width: 900px;
      margin: 0 auto;
    }

    .content-body h2 {
      font-size: 32px;
      color: var(--primary-red);
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .content-body h3 {
      font-size: 24px;
      color: var(--accent-blue);
      margin-top: 30px;
      margin-bottom: 16px;
    }

    .content-body p {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .content-body ul {
      margin-left: 20px;
      margin-bottom: 20px;
      color: #555;
      line-height: 1.8;
    }

    .content-body li {
      margin-bottom: 12px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .project-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
      }

      .project-row.reverse {
        direction: ltr;
      }

      .project-image {
        height: 300px;
      }

      .hero-title {
        font-size: 48px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-input,
      .newsletter-submit {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-divider {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .hero {
        min-height: 500px;
      }

      .hero-title {
        font-size: 36px;
      }

      .section-title {
        font-size: 32px;
      }

      .project-content h3 {
        font-size: 28px;
      }

      .footer-container {
        padding: 0;
      }
    }

    /* Utility Classes */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hidden {
      display: none;
    }

    /* Loading States */
    .loading {
      opacity: 0.6;
      pointer-events: none;
    }

    .success-message {
      background: #4caf50;
      color: white;
      padding: 16px;
      border-radius: 8px;
      margin-bottom: 20px;
      animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
