:root {
  --color-primary: #FFD1DF; /*Lightpink*/
  --color-secondary: #6784b1; /*blue */
  --color-accent: #d1d2d3;
  --color-text: #010407;
  --color-white: #ffffff;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Urbanist', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-2-col-2 {
	margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.button-primary {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    background: linear-gradient(135deg, #FFD1DF 0%, #D1D2D3 141.42%);
    border-radius: 100px;
    text-align: center;
    transition: transform 0.3s ease;
}

.button-primary:hover {
    transform: scale(1.05);
}


@media (max-width: 1024px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .grid-2-col {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .grid-2-col {
        grid-template-columns: 1fr;
        text-align: center;
    }
	.grid-2-col-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
	
}
/* CSS for section section:header */
.site-header {
    background-color: var(--color-white);
    padding-top: 18px;
    padding-bottom: 18px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 70px;
}

/* CSS for section section:hero */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 900px;
    background-image: url('images/header.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-black);
    text-align: center;
    padding: 40px 24px;
}
.hero-content {
	background-color: var(--color-accent);
	opacity: 0.7;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 24px;
	padding: 20px;
	border-radius: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

/* CSS for section section:features */
.features-section {
    background-color: var(--color-primary);
    padding-top: 112px;
    padding-bottom: 112px;
}
.features-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.features-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.features-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}
.features-list {
    display: flex;
    gap: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.feature-subheading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.feature-item p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.features-image img {
    border-radius: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .features-content {
        align-items: center;
    }
    .features-heading {
        font-size: 32px;
    }
    .features-list {
        flex-direction: column;
        align-items: center;
    }
    .feature-item {
        align-items: center;
    }
}

/* CSS for section section:about */
.about-section {
    background-color: var(--color-white);
    padding-top: 112px;
    padding-bottom: 112px;
}
.about-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.about-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.about-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-details > p {
    font-size: 18px;
    line-height: 1.5;
}
.info-list {
    display: flex;
    gap: 24px;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.info-item img {
    width: 48px;
    height: 48px;
}
.info-item h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
}
.info-item p {
    font-size: 16px;
    line-height: 1.5;
}
.about-image img {
    border-radius: 40px;
    width: 100%;
}
@media (max-width: 768px) {
    .about-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .about-heading-wrapper, .about-details {
        text-align: center;
    }
    .info-item img {
        margin: 0 auto;
    }
    .info-list {
        flex-direction: column;
    }
}

/* CSS for section section:testimonials */
.testimonials-section {
    background-color: var(--color-secondary);
    padding-top: 112px;
    padding-bottom: 112px;
}
.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}
.testimonials-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.testimonials-description p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .testimonials-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .testimonials-heading {
        font-size: 48px;
    }
    .testimonials-content, .testimonials-description {
        text-align: center;
    }
}

/* CSS for section section:cta */
.cta-section {
    background-color: var(--color-accent);
    padding-top: 112px;
    padding-bottom: 112px;
}
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.cta-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.cta-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
}
.cta-button {
    margin-top: 8px;
    padding: 10px 24px;
}
.cta-image img {
    border-radius: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .cta-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .cta-content {
        align-items: center;
        text-align: center;
    }
    .cta-heading {
        font-size: 40px;
    }
}

/* CSS for section section:footer */
.site-footer {
    background-color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.footer-socials {
    display: flex;
    gap: 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}
.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(1, 4, 7, 0.15);
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}
.footer-legal-links {
    display: flex;
    gap: 24px;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}