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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(144, 13, 205, 1);
    color: white;
}

.btn-primary:hover {
    background: rgba(124, 11, 175, 1);
    transform: translateY(-2px);
}

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

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

.cookie-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

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

.cookie-accept, .cookie-decline {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: rgba(144, 13, 205, 1);
    color: white;
}

.cookie-decline {
    background: transparent;
    color: rgba(144, 13, 205, 1);
    border: 2px solid rgba(144, 13, 205, 1);
}

.cookie-accept:hover {
    background: rgba(124, 11, 175, 1);
}

.cookie-decline:hover {
    background: rgba(144, 13, 205, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: unset;
    color: inherit;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-list a:hover {
    color: rgba(144, 13, 205, 1);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(/assets/hero.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0 50px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
}

.hero .btn {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    color: #333;
}

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

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

.service-card {
    background: rgba(144, 13, 205, 1);
    border-radius: 20px;
    overflow: hidden;
    color: white;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

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

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.about-text li:before {
    content: "•";
    color: rgba(144, 13, 205, 1);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: rgba(144, 13, 205, 1);
    color: white;
}

.team h2 {
    color: white;
}

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

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.member-info p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.investment-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.investment-image img {
    width: 100%;
    border-radius: 15px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid rgba(144, 13, 205, 1);
}

.faq-item h3 {
    color: rgba(144, 13, 205, 1);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    padding: 100px 0;
    background: rgba(144, 13, 205, 1);
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form input,
.form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form button {
    width: 100%;
    margin-top: 20px;
    background: white;
    color: rgba(144, 13, 205, 1);
}

.form button:hover {
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: rgba(144, 13, 205, 1);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand a {
    font-size: 1.5rem;
    color: white;
    text-decoration: unset;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
      justify-content: center;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

.thank-you--logo a {
  color: rgba(144, 13, 205, 1);
  text-decoration: unset;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.policy-content {
  text-align: left;
}

.policy-content a {
  color: inherit;
}

.policy-content li {
  list-style-position: inside;
}