/* Generated CSS for 2025-06-18T09:39:12.366Z */
  
  :root {
    --primary-color: #b91c1c;
    --primary-dark: #a50808;
    --primary-light: #cd3030;
    --text-color: #333;
    --text-light: #666;
    --background: #fff;
    --background-alt: #f5f5f5;
    --border-color: #ddd;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-text:hover {
    text-decoration: underline;
  }
  
  /* Header */
  header {
    padding: 1rem 0;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 1.5rem;
  }
  
  nav ul li a {
    color: var(--text-color);
    font-weight: 500;
  }
  
  nav ul li a:hover {
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
    background-color: var(--background-alt);
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  
  /* About Section */
  .about-section {
    padding: 4rem 0;
    background-color: var(--background);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Features Section */
  .features {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--background-alt);
  }
  
  .features h2 {
    margin-bottom: 3rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    padding: 2rem;
    background-color: var(--background);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
  
  .feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  /* Team Section */
  .team-section {
    padding: 4rem 0;
    text-align: center;
  }
  
  .section-desc {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .team-member {
    padding: 1.5rem;
    background-color: var(--background-alt);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid var(--background);
  }
  
  .team-member h3 {
    margin-bottom: 0.5rem;
  }
  
  .team-member p {
    color: var(--text-light);
  }
  
  /* Services Section */
  .services-section {
    padding: 4rem 0;
    text-align: center;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
  
  /* Portfolio Section */
  .portfolio-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--background-alt);
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    padding: 1rem;
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-item:hover img {
    transform: scale(1.1);
  }
  
  .portfolio-overlay h3 {
    margin-bottom: 1rem;
    color: white;
  }
  
  /* Blog Section */
  .blog-section {
    padding: 4rem 0;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .blog-post {
    background-color: var(--background-alt);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .blog-post img {
    width: 100%;
    height: auto;
  }
  
  .blog-post h3 {
    padding: 1.5rem 1.5rem 0.5rem;
  }
  
  .blog-post p {
    padding: 0 1.5rem;
  }
  
  .blog-post a {
    padding: 0 1.5rem 1.5rem;
    display: inline-block;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 4rem 0;
    background-color: var(--background);
    text-align: center;
  }
  
  .testimonial {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--background);
  }
  
  .testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 4rem 0;
    background-color: var(--background-alt);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-info h2,
  .contact-form h2 {
    margin-bottom: 2rem;
  }
  
  .contact-info p {
    margin-bottom: 1rem;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
  }
  
  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .newsletter-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .newsletter-form {
    display: flex;
    gap: 1rem;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .newsletter-form .btn {
    background-color: white;
    color: var(--primary-color);
  }
  
  .newsletter-form .btn:hover {
    background-color: var(--background-alt);
  }
  
  /* Footer */
  footer {
    padding: 2rem 0;
    background-color: var(--text-color);
    color: white;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a,
  .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .footer-links ul li a:hover,
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  /* Sidebar Layout */
  .sidebar-layout .main-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
  }
  
  .sidebar {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
  }
  
  .sidebar nav ul {
    display: block;
  }
  
  .sidebar nav ul li {
    margin: 0 0 1rem 0;
  }
  
  .sidebar-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    text-align: center;
  }
  
  .sidebar-image {
    margin-top: 2rem;
  }
  
  .sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .content {
    padding: 2rem;
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .welcome-image {
    margin: 2rem 0;
  }
  
  .welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .stat {
    text-align: center;
    padding: 1rem;
    background-color: var(--background-alt);
    border-radius: 8px;
  }
  
  .stat h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .cta-banner {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 8px;
  }
  
  .cta-banner h2, .cta-banner p {
    color: white;
  }
  
  .cta-banner .btn {
    background-color: white;
    color: var(--primary-color);
    margin-top: 1rem;
  }
  
  .cta-banner .btn:hover {
    background-color: var(--background-alt);
  }
  
  /* Modern Layout */
  .modern-layout .transparent-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
    box-shadow: none;
  }
  
  .modern-layout .transparent-header h1,
  .modern-layout .transparent-header nav ul li a {
    color: white;
  }
  
  .hero-large {
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  
  .hero-large h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .hero-large p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .cards-section {
    padding: 4rem 0;
    text-align: center;
  }
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .card {
    padding: 2rem;
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Page Content */
  .page-content {
    padding: 4rem 0;
  }
  
  .policy-content {
    max-width: 800px;
    margin: 2rem auto;
  }
  
  .policy-content h2 {
    margin-top: 2rem;
    color: var(--primary-color);
  }
  
  .policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  
  /* Cookie Consent */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .cookie-btn {
    padding: 0.5rem 1rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-content,
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .about-image {
      order: 1;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
    
    .cookie-buttons {
      margin-top: 1rem;
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      text-align: center;
    }
    
    nav ul {
      margin-top: 1rem;
      justify-content: center;
    }
    
    .sidebar-layout .main-content {
      grid-template-columns: 1fr;
    }
    
    .hero h2 {
      font-size: 2rem;
    }
    
    .hero-large h2 {
      font-size: 2.2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
    
    nav ul li {
      margin: 0.5rem 0;
    }
  }
