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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: rgba(18, 33, 71, 1);
    background: rgba(255, 255, 255, 1);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(240, 240, 240, 0.98);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px;
    z-index: 10000;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cookie-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.cookie-btn.primary {
    background: rgba(0, 94, 183, 1);
    color: white;
}

.cookie-btn.primary:hover {
    background: #1976d2;
}

.cookie-btn.secondary {
    background: #bbb;
    color: white;
}

.cookie-btn.secondary:hover {
    background: #999;
}

.cookie-btn.tertiary {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn.tertiary:hover {
    background: #f5f5f5;
}

/* Header */
.header {
    background: #000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
  text-decoration: none;
}

.nav-brand h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #1e88e5;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    background: #000;
    border-radius: 0 0 30px 30px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.mobile-menu-header h2 {
    color: white;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: #ccc;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    background: white;
    color: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-top: 148px;
    color: white;
    text-align: center;
    margin-top: 60px;
}

@media (max-width:768px){
    .hero { 
      padding-top: 80px;
    }
}

.hero-content {
  background: rgba(0, 94, 183, 1);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 40px 50px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 2rem;
}

.cta-btn {
    background: rgba(255, 255, 255, 1);
    padding: 18px 92px;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 40px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.service-card {
  max-width: calc(25% - 24px);
  width: 100%;
    background: rgba(0, 94, 183, 1);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card--max {
  max-width: calc(50% - 12px);
}

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

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

.service-content {
    padding: 25px 10px 10px;
}

.service-content h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
  font-weight: 600;
  font-style: Italic;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 15px;
}

.blue-card {
    background: #1e88e5;
    color: white;
}

.blue-card .service-content h3,
.blue-card .price {
    color: white;
}

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

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-content img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

/* Team Section */
.team {
    padding: 40px 0;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.team-member {
  display: flex;
  flex-direction: column;
    background: rgba(0, 94, 183, 1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-member img {
  margin-top: auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 30px 20px;
    color: #fff;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq .container {
    padding: 60px 40px;
    border-radius: 60px;
    background: rgba(0, 94, 183, 1);
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {

}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: max-content;
    margin-top: 24px;
    margin-left: 60px;
    border-left: 2px solid rgba(255, 255, 255, 1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding: 6px 10px;
}

/* Different Section */
.different {
    padding: 60px 0;
}

.different h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 35px;
}

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

.different-text p {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
}

.different-content img {
    width: 100%;
    border-radius: 15px;
}

/* Contact Section */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 40px 60px;
  background: rgba(0, 94, 183, 1);
}

.contact-info p {
  color: #fff;
}

.contact h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e88e5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Hidden class for cookie banner */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .different-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .different-content img {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        text-align: center;
    }

    .service-card {
      max-width: calc(50% - 24px);
    }

    .contact .container {
      grid-template-columns: 1fr;
      padding: 40px 10px;
      margin-left: 16px;
      margin-right: 16px;
      width: calc(100% - 32px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services h2,
    .about h2,
    .team h2,
    .faq h2,
    .different h2,
    .contact h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
      max-width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-label {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.checkbox-label a {
  color: inherit;
  text-decoration: none;
}

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

.policy h1 {
  font-weight: 900;
  font-size: 38px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  padding-bottom: 20px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

@media (max-width:500px){
  .cta-btn {
    padding: 18px 40px;
  }
}