/* Color Palette:
   Primary Dark Blue: #1A2E4C
   Secondary Mid Blue: #5FA0D4
   Accent Light Pink: #D6A3BE
   Accent Light Blue: #A7D6EA
   Subtle Shadow Blue: #3C638E
*/

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

a {
  color: #A7D6EA; 
}

html, body {
  height: 100%;   
  margin: 0;     
  padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1A2E4C; /* Primary Dark Blue */
    color: #fff;

  display: grid;
  grid-template-rows: 95px 1fr 180px; /* header | main | footer */
  min-height: 100vh;
  margin: 0;
}

/* Header styles */
.header {
    background-color: #1A2E4C; /* Primary Dark Blue */
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header__logo__container {
}

.header__logo__img {
    padding: 0;
    margin: 0;
    height: 60px;
    float: left;
}

.header__logo__text {
    margin: 0 15px 0;
    padding: 0;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    line-height: 60px;
    float: left;
}



.header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__menu-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header__menu-link__back-button {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.back-button:hover {
    background-color: #B88BA3; /* Slightly darker pink */
    transform: scale(1.05);
}

.header__menu-link:hover {
    color: #5FA0D4; /* Secondary Mid Blue */
}

.main {
    width: 100%;
    margin: 0 auto;
}

.legal-notice__container {
    max-width: 800px;
    padding: 50px 15px;
    margin: 0 auto;
}

.legal-notice__container h1 {
    margin: 0 0 15px;
}



.privacy-policy__container {
    max-width: 800px;
    padding: 50px 15px;
    margin: 0 auto;
}

.privacy-policy__container h1 {
    margin: 0 0 15px;
}

.privacy-policy__container h2 {
    margin: 0 0 10px;
}





/* Hero section */
.hero {
    background: linear-gradient(135deg, #1A2E4C 0%, #3C638E 100%); /* Primary Dark Blue to Subtle Shadow Blue */
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #A7D6EA; /* Accent Light Blue */
}

.hero__cta {
    background-color: #D6A3BE; /* Accent Light Pink */
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero__cta:hover {
    background-color: #B88BA3; /* Slightly darker pink */
}

/* Services section */
.services {
    padding: 4rem 2rem;
    background-color: #1A2E4C; /* Primary Dark Blue */
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.service-card {
    background-color: #2A3F5F; /* Slightly lighter than primary */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.service-card__title {
    color: #5FA0D4; /* Secondary Mid Blue */
    margin-bottom: 1rem;
}

.service-card__description {
    color: #ccc;
}

/* About section */
.about {
    padding: 4rem 2rem;
    background-color: #1A2E4C; /* Primary Dark Blue */
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.about__text p {
    margin-bottom: 1rem;
    color: #ccc;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    padding: 1rem;
    background-color: #2A3F5F; /* Slightly lighter than primary */
    border-radius: 5px;
    border-left: 4px solid #D6A3BE; /* Accent Light Pink */
}

.feature__title {
    color: #5FA0D4; /* Secondary Mid Blue */
    margin-bottom: 0.5rem;
}

.feature__text {
    color: #ccc;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2E4C 0%, #3C638E 100%); /* Primary Dark Blue to Subtle Shadow Blue */
    color: white;
    text-align: center;
}

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

.contact__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #aaa;
}

.contact__submit {
    background-color: #5FA0D4; /* Secondary Mid Blue */
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact__submit:hover {
    background-color: #3C638E; /* Subtle Shadow Blue */
}



.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}


.btn--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
}

.btn--secondary:hover {
    background-color: white;
    color: #2c3e50;
}



/* Footer */
.footer {
    background-color: #0D1B2A; /* Darker shade of primary */
    color: white;
    padding: 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__brand h3 {
    color: #5FA0D4; /* Secondary Mid Blue */
}

.footer__tagline {
    color: #A7D6EA; /* Accent Light Blue */
}

.footer__links {
    display: flex;
    gap: 1rem;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #5FA0D4; /* Secondary Mid Blue */
}

.footer__bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #3C638E; /* Subtle Shadow Blue */
}

.footer__copyright {
    color: #ccc;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        grid-template-rows: 150px 1fr 180px; /* header | main | footer */
    }
    .header__nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header__menu {
        gap: 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 1rem;
    }
}
