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

a{
    text-decoration: none;
    cursor: pointer;
}

/* Hero Logo Styles */
.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.hero-logo img {
    height: 80px;
    width: auto;
}

/* Remove header styles and adjust hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(5, 15, 25, 0.3) 20%, 
        rgba(5, 31, 46, 0.2) 40%, 
        rgba(10, 26, 46, 0.4) 60%, 
        rgba(15, 21, 40, 0.7) 80%, 
        rgba(10, 15, 26, 0.9) 95%, 
        rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.5) 40%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(5, 31, 46, 0.9) 60%, 
        rgba(10, 26, 46, 1) 80%, 
        rgba(15, 21, 40, 1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    margin-top: 100px;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-description p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Business Model Section Styles */
.business-model-section {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    color: white;
    background: transparent;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.section-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
}

.system-card {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.feature-card {
    background: #131946;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #192050;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.feature-card:hover {
    background: #192050;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.elementor-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #61CE70;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .elementor-icon {
    transform: translateX(5px);
    color: #4fb85a;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-btn {
    background: #4fb85a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-btn:hover {
    background: #4fb85a;
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for next section */
@media (max-width: 768px) {
    .next-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Analysis Section Styles */
.analysis-section {
    background: white;
    padding: 4rem 0;
    color: #333;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.left-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 01rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.intro-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.first-image {
    display: flex;
    justify-content: center;
}

.second-image {
    display: flex;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.right-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.section-title p{
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0;
}

.questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.question-card {
    background: #f8f9fa;
    border: 1px solid #61CE70;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.question-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.question-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.question-btn {
    background: #61CE70;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.question-btn:hover {
    background: #4fb85a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .analysis-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-text h2 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .secondary-image {
        height: 150px;
    }
}

/* Future Section Styles */
.future-section {
    background: white;
    padding: 4rem 0;
    color: #333;
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.future-image {
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.future-image img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.future-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.future-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.scrollable-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #61CE70;
    border-radius: 3px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #4fb85a;
}

.content-item {
    border-bottom: 1px solid #61CE70;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.content-item:last-child {
    border-bottom: none;
}

.content-item:hover {
    background: rgba(97, 206, 112, 0.05);
    padding-left: 1rem;
    margin-left: -1rem;
    border-radius: 8px;
}

.content-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.content-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.content-item.highlight {
    background: #61CE70;
    color: white;
    border: none !important;
    border-radius: 12px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: fit-content;
    transition: all 0.3s ease;
    display: flex;
}

.content-item.highlight:hover {
    background: #4fb85a;
    color: white;
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .future-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .future-text h2 {
        font-size: 1.5rem;
    }
    
    .scrollable-content {
        max-height: 400px;
    }
}

/* Success Stories Section */
.success-section {
    background: white;
    padding: 4rem 0;
    color: #333;
}

.success-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.success-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.success-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-top: 3rem;
    height: 600px;
}

.story-card:first-child {
    grid-row: 1 / -1;
}

.story-card {
    background: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #61CE70, #4fb85a);
}


.story-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.7);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-card:hover .image-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
}

.image-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.story-btn {
    background: #61CE70;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-btn:hover {
    background: #4fb85a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-header h2 {
        font-size: 2rem;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1.5rem;
    }
    
    .story-card:first-child {
        grid-row: auto;
    }
    
    .story-image {
        height: 250px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-overlay h3 {
        font-size: 1.2rem;
    }
    
    .image-overlay p {
        font-size: 0.85rem;
    }
}

/* Contact Form Section */
.contact-section {
    background: white;
    padding: 4rem 0;
    color: #333;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #61CE70;
    box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.submit-btn {
    background: #61CE70;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #4fb85a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 206, 112, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 2rem;
    color: white;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #61CE70;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b09d9d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.registration-info p {
    color: #b09d9d;
    font-size: 0.9rem;
    font-style: italic;
}

.registration-info a {
    color: #61CE70;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.registration-info a:hover {
    color: #4fb85a;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
}
/* About Page Styles - Creative Design */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(97, 206, 112, 0.1) 0%, transparent 50%);
    transform: rotate(15deg);
    z-index: 1;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
    background: linear-gradient(135deg, #61CE70 0%, #4fb85a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.mission-text p::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #61CE70;
    font-weight: bold;
    font-size: 1.5rem;
}

.mission-image {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.mission-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.mission-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(97, 206, 112, 0.2);
    transition: all 0.5s ease;
}

.mission-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #61CE70, #4fb85a);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.mission-image:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.values-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 6rem 0;
    color: #333;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #61CE70 50%, transparent 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.values-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.values-header h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 2px;
}

.values-header p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(97, 206, 112, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}


.value-icon {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(97, 206, 112, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon::after {
    transform: translate(-50%, -50%) scale(1.5);
    background: radial-gradient(circle, rgba(97, 206, 112, 0.2) 0%, transparent 70%);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.value-card:hover h3::after {
    width: 50px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

.team-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(97, 206, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(97, 206, 112, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.team-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.team-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 2px;
}

.team-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(97, 206, 112, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}



.step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #61CE70 0%, #4fb85a 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    color: white;
    position: relative;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.step-card:hover h3::after {
    width: 60px;
}

.step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 400;
}

.cta-section {
    background: #61CE70;
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}


.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #61CE70;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}


.cta-btn:hover {
    color: #4fb85a;
}

/* Contact Page Styles */
.contact-page-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.contact-page-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 160%;
    background: linear-gradient(45deg, rgba(97, 206, 112, 0.05) 0%, transparent 50%);
    transform: rotate(15deg);
    z-index: 1;
}

.contact-page-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
    background: linear-gradient(135deg, #61CE70 0%, #4fb85a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.contact-page-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(97, 206, 112, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-page-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #61CE70;
    background: white;
    box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: #61CE70;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #61CE70 0%, #4fb85a 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(97, 206, 112, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(97, 206, 112, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(97, 206, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(97, 206, 112, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(97, 206, 112, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(97, 206, 112, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 1px;
}

.info-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .values-header h2,
    .team-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-image img {
        height: 250px;
    }
    
    /* Contact Page Responsive */
    .contact-page-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Simple Header and Policy Pages */
.simple-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-content .logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #61CE70;
}

.policy-main {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #61CE70 0%, #4fb85a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(90deg, #61CE70 0%, #4fb85a 100%);
    border-radius: 2px;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}



.contact-info p {
    margin-bottom: 0.5rem;
    color: #b09d9d;
}

.contact-info strong {
    color: #61CE70;
}

/* Responsive for Policy Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-nav {
        gap: 1.5rem;
    }
    
    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}
