@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@300;500&display=swap');
       /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #f5f6fa; /* Light background from logo palette */
}

a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;

}
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Add consistent spacing between sections */
.section {
    padding: 50px 0; /* Add consistent padding for all sections */
    margin-bottom: 20px; /* Add margin to separate sections */
}

/* Hero Section */
.hero {
    background-color: #1A1A1A; /* Use logo's secondary color */
    text-align: center;
    padding: 120px 0; /* Keep larger padding for the hero section */
    margin-bottom: 60px; /* Add extra margin below the hero */
}

.hero h1 {
   padding-top: 50px;
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff; /* White text for contrast */
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #d9afa5; /* Light text for readability */
}

/* Story Section */
.story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
}

.story-image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d9afa5; /* Use logo's secondary color */
}

.section-subtitle {
    font-size: 18px;
    color: black; /* Use logo's accent color */
    margin-bottom: 10px;
}

/* Features Section */
.features {
    background-color: #f5f7fa;
    text-align: center;
    margin-top: 60px; /* Add extra margin above features */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: #708bb5; /* Use logo's accent color */
    margin-bottom: 20px;
}
.feature-icon img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333; /* Dark text for contrast */
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #111;
}

.team-role {
    font-size: 16px;
    color: #0066ff;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    color: #666;
}

/* Stats Section */
.stats {
    background-color: #1A1A1A; /* Use logo's accent color */
    color: #ffffff; /* White text for contrast */
    text-align: center;
}
.stats h3{
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 80px 0; /* Ensure consistent padding */
    margin-bottom: 40px; /* Add margin below testimonials */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #ffffff; /* White background for testimonials */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #d9afa5; /* Use logo's secondary color */
}

.testimonial-role {
    font-size: 14px;
    color: #666;
}
/* Responsive */
@media (max-width: 768px) {
    .story-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
}