
  :root {
    --primary: #2a6d7c;
    --secondary: #e07a5f;
    --accent: #f2cc8f;
    --light: #f5f5f5;
    --dark: #333333;
    --gray: #81858c;
    --bg-light: #f9f9f9;
    --bg-dark: #3d405b;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  section {
    position: relative;
    padding: 5rem 0;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
  }

  h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-light);
    padding: 0;
  }

  .hero-section .content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius);
    max-width: 800px;
  }

  .hero-section h1 {
    color: var(--primary);
  }

  /* Trends Section */
  .trends-section {
    background-color: var(--light);
  }

  .trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }

  .trend-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }

  .trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .trend-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .trend-card h3, .trend-card p {
    padding: 0 1.5rem;
  }

  .trend-card h3 {
    margin-top: 1.5rem;
    color: var(--primary);
  }

  .trend-card p {
    padding-bottom: 1.5rem;
  }

  /* Color Inspiration */
  .color-inspiration {
    background-color: var(--bg-dark);
    color: white;
  }

  .color-inspiration h2, 
  .color-inspiration p {
    color: white;
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
  }

  .section-intro a {
    color: var(--accent);
    text-decoration: none;
  }

  .section-intro a:hover {
    text-decoration: underline;
  }

  .color-palettes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
  }

  .palette {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
  }

  .palette:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .color-sample {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
  }

  .earth-tones {
    background: linear-gradient(135deg, #d8c3a5 0%, #8e8d8a 50%, #5e5c54 100%);
  }

  .pastel-blues {
    background: linear-gradient(135deg, #e0f7fa 0%, #80deea 50%, #4dd0e1 100%);
  }

  .warm-terracotta {
    background: linear-gradient(135deg, #ffccbc 0%, #ff8a65 50%, #e64a19 100%);
  }

  .sage-green {
    background: linear-gradient(135deg, #dcedc8 0%, #aed581 50%, #7cb342 100%);
  }

  .palette h3 {
    color: white;
    font-size: 1.3rem;
  }

  .palette p {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Style Showcase */
  .style-showcase {
    background-color: var(--bg-light);
  }

  .tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }

  .tab-btn:hover {
    background-color: rgba(42, 109, 124, 0.1);
  }

  .tab-btn.active {
    background-color: var(--primary);
    color: white;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .style-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .style-features {
    list-style: none;
    margin-top: 1.5rem;
  }

  .style-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
  }

  .style-features i {
    color: var(--secondary);
    margin-right: 0.8rem;
  }

  .style-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  /* Gallery */
  .inspiration-gallery {
    background-color: white;
  }

  .gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }

  .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }

  .gallery-caption h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .gallery-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
  }

  /* Form Section */
  .inspiration-form {
    background-color: var(--bg-light);
  }

  .form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  .full-width {
    grid-column: span 2;
  }

  label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
  }

  input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
  }

  .submit-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
  }

  .submit-btn:hover {
    background-color: #c86a51;
  }

  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .style-info {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .style-text {
      order: 2;
    }
    
    .style-image {
      order: 1;
    }
    
    .contact-form {
      grid-template-columns: 1fr;
    }
    
    .full-width {
      grid-column: span 1;
    }
  }
