/* General Styles */
:root {
    --primary-color: rgba(50, 125, 222, 1);
    --dark-blue: #1c58b0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #222222;
    --border-radius: 4px;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 60px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

.btn-white {
    background-color: var(--white);
    color: rgba(50, 125, 222, 1) !important;
}

.btn-white:hover {
    background-color: var(--light-gray);
}

.btn-dark {
    background-color: var(--dark-gray);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #555;
}

.btn-text {
    background: none;
    color: var(--text-color);
    padding: 12px 0;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.nav-links a {
    color: var(--white);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.hero-content h1 {
    margin-bottom: 30px;
}

.hero-content p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(50, 125, 222, 0.1);
  border-radius: 40px;
  padding: 24px;
}

.about-content h2 {
  text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    text-align: center;
}

/* Services Section */
.services {
    background-color: var(--white);
    text-align: center;
}

.services-title {
    margin-bottom: 40px;
}

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

.service-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 40px;
    text-align: left;
    height: 100%;
}

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

.service-icon img {
  width: 80%;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 169px;
}

.about-image {
  align-self: stretch;

}

.about-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
    border-radius: 16px;
}

/* No Apps Section */
.no-apps {
    text-align: center;
    padding: 40px;
    border-radius: 40px;
    max-width: 615px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(50, 125, 222, 0.1);
}

/* Knowledge Section */
.knowledge {
    background-color: var(--white);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Vision Section */
.vision {
    background-color: var(--white);
    text-align: center;
}

.vision p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vision-card {
    text-align: left;
    padding: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 40px;
}

.vision-card img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.vision-card h3 {
    margin-bottom: 10px;
}

.vision-cta {
    margin-top: 20px;
}

/* Consultation Section */
.consultation {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.consultation p {
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.contact-form .btn {
  width: 100%;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
}

.form-error {
    color: #ff6b6b;
    text-align: left;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 30px 0;
    font-size: 0.9rem;
}

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

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

.footer-links a:hover {
  color: #1c58b0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

.cookie-content h3 {
    margin-bottom: 10px;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    margin-bottom: 30px;
}

.thank-you p {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .services-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        z-index: 100;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .container {
      width: 100%;
    }
    
    footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
}

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