:root {
    --primary-color: #e30a17;
    --secondary-color: #ffffff;
    --background-color: #f4f4f4;
    --text-color: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.main-header {
    background-color: var(--background-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #e30a17;
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e30a17;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #e30a17;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #333333;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.contact-form, .info-card {
    flex-basis: calc(50% - 20px);
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-form:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 10px;
    top: 10px;
    transition: all 0.3s ease;
    pointer-events: none;
    color: #888;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group input:focus + label, .form-group textarea:focus + label,
.form-group input:valid + label, .form-group textarea:valid + label {
    top: -20px;
    left: 0;
    font-size: 12px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 0 5px;
}

.form-group textarea {
    height: 150px;
}

.btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #c50914;
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 30px;
}

.info-section h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
}

.faq details {
    margin-bottom: 10px;
}

.faq summary {
    cursor: pointer;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.message-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(-20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message-status.success {
    background-color: #4CAF50;
    color: white;
    border-left: 5px solid #45a049;
}

.message-status.error {
    background-color: #f44336;
    color: white;
    border-left: 5px solid #da190b;
}

.message-status.show {
    opacity: 1;
    transform: translateY(0);
}

.message-status::before {
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.message-status.success::before {
    content: "\f00c";
}

.message-status.error::before {
    content: "\f00d";
}

@media (max-width: 768px) {
    .contact-form, .info-card {
        flex-basis: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-icon {
        display: block;
    }
    .container {
        padding-top: 80px; /* Add padding to account for fixed header */
    }
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #ffffff;
    color: #333333;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: Arial, sans-serif;
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .cookie-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .cookie-link:hover {
    text-decoration: underline;
  }
  
  .cookie-button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cookie-button:hover {
    background-color: #b30600;
  }
  
  @media screen and (max-width: 768px) {
    .cookie-consent {
      bottom: 0;
      left: 0;
      right: 0;
      width: 98%;
      max-width: none;
      border-radius: 0;
      transform: none;
      padding: 15px;
    }
  
    .cookie-content p {
      font-size: 13px;
    }
  
    .cookie-button {
      width: 100%;
      padding: 12px;
      font-size: 14px;
    }
  }

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #e30a17;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section h4 {
    color: #e30a17;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e30a17;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #cccccc;
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
    color: #e30a17;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #aaaaaa;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #e30a17;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.3em;
    }
    
    .footer-section h4 {
        font-size: 1.1em;
    }
}