/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.cookie-text h3 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-accept {
    background: #FF8C42;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #e67a35;
}

.btn-refuse {
    background: transparent;
    color: #FF8C42;
    border: 2px solid #FF8C42;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refuse:hover {
    background: #FF8C42;
    color: white;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4A90E2;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4A90E2;
}

.nav-legal {
    display: flex;
    gap: 20px;
}

.nav-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-legal a:hover {
    color: #4A90E2;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2, #50E3C2);
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: #FF8C42;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #e67a35;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #4A90E2;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Advantages Section */
.advantages {
    padding: 100px 20px;
    background: white;
}

.advantages h2 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 30px;
    font-weight: 700;
}

.advantages-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.advantages-content img {
  max-width: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.advantage-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services h2 {
    
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.blue h3 {
 color: rgba(59, 130, 246, 1);
}

.service-card.pink h3 {
 color: rgba(246, 59, 209, 1);
}

.service-card.green h3 {
  color: rgba(0, 187, 103, 1);
}

.service-card.orange h3 {
  color: rgba(255, 136, 17, 1);
}

.service-card.purple h3 {
  color: rgba(137, 44, 243, 1);
}

.service-card.red h3 {
  color: rgba(241, 34, 11, 1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
   
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    margin-bottom: 20px;
}

.team-image img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    
}

.team-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-role {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4A90E2, #50E3C2);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 10px;
    color: white;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #FF8C42;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e67a35;
    transform: translateY(-2px);
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Thank You Section */
.thank-you {
    background: linear-gradient(135deg, #4A90E2, #50E3C2);
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.thank-you-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.thank-you-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.thank-you-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 40px 20px 20px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: #4A90E2;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .thank-you-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .thank-you-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .header {
      position: relative !important;
    }
    
    .nav-links {
        order: 1;
        gap: 20px;
    }
    
    .nav-legal {
        order: 2;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 0;
        align-self: flex-end;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about, .advantages, .services, .team, .contact, .thank-you {
        padding: 60px 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }

    .advantages-content {
      flex-direction: column;
    }
    
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .footer-links {
      flex-direction: column;
    }
    
    .thank-you-text h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card,
    .service-card {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card,
.service-card,
.team-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #27ae60;
    background-color: #f2f8f5;
}

.policy {
  margin-top: 80px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.policy h1 {
  font-weight: 800;
  font-size: 50px;
  line-height: 100%;
  color: rgba(59, 130, 246, 1);
  margin-bottom: 24px;
}

.policy-content a {
  color: inherit;
  text-decoration: unset;
}

@media (max-width:768px){
    .policy {
      margin-top: 0;
    }

    .policy h1 {
      font-size: 40px;
    }
}