:root {
    --beige-light: #f5f0e6;
    --beige-medium: #e8d9c0;
    --beige-dark: #d0bc9a;
    --purple-light: #c8b6e2;
    --purple-medium: #9a7ecc;
    --purple-dark: #6a4c93;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-main: 'Comfortaa', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--beige-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--purple-dark);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--purple-medium);
}

section {
    padding: 4rem 2rem;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--purple-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--beige-medium), var(--purple-medium), var(--beige-medium));
}

.hex-header {
    background-color: var(--purple-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    border-radius: 50%;
    border: 3px solid var(--beige-medium);
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: linear-gradient(to right, var(--beige-light), var(--beige-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--beige-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.3rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--beige-medium);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.diagonal-banner {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--beige-medium) 0%, var(--beige-light) 100%);
    position: relative;
    padding: 6rem 2rem;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    margin-top: -2rem;
}

.banner-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.banner-content h2 {
    font-size: 2.5rem;
    color: var(--purple-dark);
    margin-bottom: 1.5rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.3);
    transform: rotate(2deg);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--purple-medium);
    color: var(--text-light);
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--purple-medium);
}

.cta-button:hover {
    background-color: var(--purple-dark);
    color: var(--text-light);
    border-color: var(--purple-dark);
    transform: translateY(-3px);
}

.honeycomb-layout {
    background-color: var(--beige-light);
    padding: 5rem 1rem;
}

.honeycomb-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.honeycomb-item {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--beige-medium);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.2);
}

.honeycomb-item:nth-child(odd) {
    transform: translateY(20px);
}

.honeycomb-item:hover {
    transform: translateY(-5px);
}

.honeycomb-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.honeycomb-item h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--purple-dark);
    font-size: 1.3rem;
}

.honeycomb-item p {
    padding: 0 1rem 1.5rem;
    font-size: 0.95rem;
}

.wave-section {
    background: linear-gradient(to bottom, var(--beige-light), var(--purple-light) 50%, var(--beige-light));
    padding: 6rem 2rem;
    position: relative;
}

.wave-section::before,
.wave-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-size: 100% 100%;
}

.wave-section::before {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f0e6' d='M0,64L80,58.7C160,53,320,43,480,48C640,53,800,75,960,80C1120,85,1280,75,1360,69.3L1440,64L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
}

.wave-section::after {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f0e6' d='M0,64L80,58.7C160,53,320,43,480,48C640,53,800,75,960,80C1120,85,1280,75,1360,69.3L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
    background-color: var(--beige-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(106, 76, 147, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--purple-light);
}

.benefit-card h3 {
    color: var(--purple-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.scroll-story {
    padding: 5rem 2rem;
    background-color: var(--beige-light);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--beige-medium);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(106, 76, 147, 0.2);
}

.story-card img {
    width: 35%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
    flex: 1;
}

.story-content h3 {
    color: var(--purple-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.story-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--purple-medium);
    font-family: serif;
    height: 20px;
    line-height: 1;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.circular-team {
    background-color: var(--purple-light);
    padding: 5rem 2rem;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--beige-medium);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--purple-medium);
}

.team-member h3 {
    color: var(--purple-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-section {
    background-color: var(--beige-light);
    padding: 5rem 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info, 
.contact-form {
    flex: 1 1 400px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--purple-dark);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h3::after,
.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--purple-medium);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--beige-medium);
    border-radius: 8px;
    background-color: var(--beige-light);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-medium);
}

.submit-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--purple-medium);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
}

footer {
    background-color: var(--purple-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo,
.footer-nav,
.footer-policies {
    flex: 1 1 250px;
}

.footer-logo .logo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--beige-medium);
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-nav h3,
.footer-policies h3 {
    color: var(--beige-medium);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-policies ul {
    list-style: none;
}

.footer-nav li,
.footer-policies li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-policies a {
    color: var(--beige-light);
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-policies a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 230, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
    }
    
    .hex-header {
        flex-direction: column;
        padding: 1rem 1rem 3rem;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .diagonal-banner {
        padding: 5rem 1.5rem;
    }
    
    .banner-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .honeycomb-item:nth-child(odd) {
        transform: translateY(0);
    }
    
    .story-card, 
    .story-card.reverse {
        flex-direction: column;
    }
    
    .story-card img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .main-nav li {
        margin-right: 0.5rem;
    }
    
    .diagonal-banner {
        clip-path: none;
        padding: 4rem 1rem;
    }
    
    .hex-header {
        clip-path: none;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .main-nav {
        width: 100%;
        overflow-x: auto;
    }
    
    .main-nav ul {
        width: max-content;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 375px) {
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .banner-content h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .honeycomb-item {
        min-width: 100%;
    }
    
    .benefit-card img {
        width: 60px;
        height: 60px;
    }
}

.policy-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--beige-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(106, 76, 147, 0.1);
}

.policy-page h1 {
    color: var(--purple-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.policy-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--beige-medium), var(--purple-medium), var(--beige-medium));
}

.policy-page h2 {
    color: var(--purple-dark);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--purple-medium);
}

.policy-page p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.policy-page ul, 
.policy-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.7rem;
}

.back-button {
    display: inline-block;
    padding: 0.7rem 2rem;
    background-color: var(--purple-medium);
    color: var(--text-light);
    border-radius: 30px;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(106, 76, 147, 0.2);
}

.back-button:hover {
    background-color: var(--purple-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
}

.thankyou-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--beige-light), var(--purple-light));
}

.thankyou-content {
    background-color: var(--beige-light);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.thankyou-content h1 {
    color: var(--purple-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thankyou-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--beige-medium);
    z-index: -1;
    transform: skewX(-10deg);
}

.scroll-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--beige-medium) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.contact-info strong {
    color: var(--purple-dark);
}