/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #eae7e2;
    color: #37352f;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    background-color: #eae7e2;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 24px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #603e1f;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #37352f;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000000;
}

.nav-buttons {
    display: none;
}

.login-btn, .signup-btn {
    display: none;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 10rem;
    text-align: center;
    background-color: #eae7e2;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-1 {
    color: #603e1f;
}

.hero-text-2 {
    color: #a7877a;
}

.hero p {
    font-size: 1.25rem;
    color: #603e1f;
    margin-bottom: 2rem;
    font-weight: 400;
}

.backed-by {
    margin: 1rem auto;
    text-align: center;
}

.backed-by img {
    max-width: 100px;
    height: auto;
}

.lines-container {
    position: relative;
    height: 0;
}

.lines-image {
    position: absolute;
    max-width: 300px;
}

.lines-image.dark {
    left: 10rem;
    top: -20rem;
}

.lines-image.light {
    right: 16rem;
    top: -20rem;
}

.lines-image img {
    height: auto;
}

.people-image {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}


.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.primary-btn {
    text-decoration: none;
    color: #603e1f;
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #603e1f;
    transition: all 0.2s;
}

.primary-btn:hover {
    background-color: #603e1f;
    color: #ffffff;
}

.secondary-btn {
    text-decoration: none;
    color: #37352f;
    background-color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.secondary-btn:hover {
    background-color: #f7f7f7;
}

.hero-image {
    margin-top: 3rem;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 1rem 2rem 1%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
    font-weight: 700;
}

.features h2 span:first-child {
    color: #a7877a;
}

.features h2 span:last-child {
    color: #603e1f;
}

.features > p {
    font-size: 1.25rem;
    color: #603e1f;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    width: 100%;
}

.feature-card {
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    overflow: hidden;
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin: 1rem;
    font-weight: 600;
    color: #603e1f;
}

.feature-card p {
    color: #603e1f;
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
}

.quote-card {
    text-align: left;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #603e1f;
    margin-bottom: 0.5rem;
    font-style: italic;
    white-space: nowrap;
    width: fit-content;
}

.quote-author h4 {
    font-size: 0.9rem;
    color: #603e1f;
    margin-bottom: 0.25rem;
}

.quote-author p {
    color: #666;
    font-size: 0.8rem;
}

.line-dark {
    text-align: right;
    margin-left: -45rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: -30rem;
    margin-bottom: -25rem;
    opacity: 0.5;
}

.line-dark img {
    max-width: 100%;
}

.line-light {
    text-align: right;
    margin-right: -25rem;
    vertical-align: middle;
    margin-top: -15rem;
    margin-bottom: -25rem;
    opacity: 0.5;
}

.line-light img {
    max-width: 100%;
}

.quote-image, .quote-image-2 {
    position: relative;
    width: 100%;
}

.quote-image img, .quote-image-2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.quote-image-2 {
    margin: 0 auto;
    text-align: left;
    max-width: 80px;
    margin-left: 39rem;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: -5rem;
}

.quote-card:first-child {
    margin-left: 20rem;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0rem;
}

.quote-card:first-child .quote-author {
    text-align: right;
    margin-right: 3rem;
    white-space: nowrap;
}

.quote-card:nth-child(2) {
    margin-left: 10rem;
    max-width: 100%;
    margin-top: 6rem;
}

.quote-card:nth-child(2) .quote-author {
    text-align: center;
    white-space: nowrap;
    margin-right: 10rem;
}

.quote-image {
    margin: 0 auto;
    text-align: left;
    max-width: 80px;
    margin-left: -3rem;
    display: inline-block;
    vertical-align: middle;
}

.quote-card:last-child {
    margin-left: 3rem;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: #f7f7f7;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: normal;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta h2 span:first-child,
.cta h2 span:last-child {
    color: #a7877a;
}

.cta h2 span:nth-child(2) {
    color: #603e1f;
}

/* Footer */
.footer {
    background-color: #f7f7f7;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section a {
    display: block;
    text-decoration: none;
    color: #666;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-section a:hover {
    color: #000000;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #603e1f;
}

.footer-bottom p {
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-image img, .quote-image-2 img {
        max-width: 100%;
        height: auto;
    }

    .quote-card:first-child {
        margin-left: 0;
        overflow: hidden;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) {
        margin-left: -1rem;
        white-space: normal;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        margin-left: 8rem;
    }

    .quote-image {
        margin-left: 0rem;
        overflow: hidden;
    }

    .quote-image-2 {
        margin-left: 0rem;
        overflow: hidden;
    }

    .line-dark,
    .line-light {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 0;
        margin-top: 0rem;
        overflow: hidden;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 0rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: right;
        margin-right: 1rem;
    }
}

@media (max-width: 430px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 2.5rem;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 5.5rem;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 2rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: center;
        margin-left: -2rem;
    }
    .quote-image-2 {
        margin-left: 18rem;
        overflow: hidden;
    }
    .people-image {
        width: 100%;
        height: 100%;
        top: -1rem;
        left: -34rem;
        opacity: 0.1;
    }
}

@media (max-width: 428px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 2.5rem;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 5.5rem;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 2rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: center;
        margin-left: -2rem;
    }
    .quote-image-2 {
        margin-left: 18rem;
        overflow: hidden;
    }
}

@media (max-width: 414px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 1.5rem;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 5.5rem;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 2rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: center;
        margin-left: -2rem;
    }
    .quote-image-2 {
        margin-left: 17rem;
        overflow: hidden;
    }
}

@media (max-width: 393px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 0;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 6.5rem;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 0.5rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: right;
        margin-right: 7rem;
    }
    .quote-image-2 {
        margin-left: 15rem;
        overflow: hidden;
    }
    .people-image {
        width: 100%;
        height: 100%;
        top: -1rem;
        left: -35rem;
        opacity: 0.1;
    }
}

@media (max-width: 390px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: 0;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 6.5rem;
    }
    
    .quote-card:last-child {
        margin-left: 5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 0.5rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: center;
        margin-right: 0rem;
    }
    .people-image {
        width: 100%;
        height: 100%;
        top: -1rem;
        left: -36rem;
        opacity: 0.1;
    }
}
@media (max-width: 375px) {
    .feature-grid {
        width: 100%;
        overflow: hidden;
    }

    .quote-image, .quote-image-2 {
        width: 100%;
        overflow: hidden;
    }

    .quote-card:first-child {
        margin-left: -1rem;
        margin-top: 0rem;
        overflow: hidden;
    }
    .quote-card:first-child .quote-author {
        text-align: right;
        margin-right: 6rem;
    }
    
    .quote-card:last-child {
        margin-left: 4.5rem;
        white-space: normal;
        overflow: hidden;
    }
    .quote-card:nth-child(2) {
        margin-left: 0rem;
        white-space: normal;
        margin-top: 2rem;
        overflow: hidden;
    }

    .quote-card:nth-child(2) .quote-author {
        text-align: center;
        margin-right: 0rem;
    }

    .quote-image {
        margin-left: -0.5rem;
        overflow: hidden;
    }

    .quote-image-2 {
        margin-left: 14.5rem;
        overflow: hidden;
    }
    .people-image {
        width: 100%;
        height: 100%;
        top: -1rem;
        left: -37rem;
        opacity: 0.1;
    }
}

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #a7877a;
    transform-origin: left;
    animation: loading 2s ease-in-out infinite;
}

main {
    margin-top: 80px;
}

.video-card {
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-card video {
    width: 100%;
    height: auto;
    display: block;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    font-size: 1.25rem;
    color: #603e1f;
    margin-bottom: 1rem;
}

.info-card p {
    color: #603e1f;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.team {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f7f7f7;
}

.team h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team h2 span:first-child {
    color: #a7877a;
}

.team h2 span:last-child {
    color: #603e1f;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-member .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member .linkedin-icon {
    width: 24px;
    height: 24px;
    margin-top: 1rem;
}

.team-member h3 {
    font-size: 1.1rem;
    color: #603e1f;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.team-member .bio {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
} 