* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

header {
    color: #6b46c1;
    padding: 1.5rem 0;
    width: 100%;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

nav h1 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -2px;
    text-decoration: underline;
    text-decoration-color: #6b46c1;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #6b46c1;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6b46c1;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

main {
    padding: 2rem 0;
}

section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.hero {
    color: #6b46c1;
    text-align: center;
    padding: 8rem 2rem;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: #6b46c1;
}

.cta-button {
    background: #6b46c1;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-button:hover {
    background: #5a3aa7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.intro {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.support-services {
    background: rgba(107, 70, 193, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.support-services h3 {
    color: #6b46c1;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.support-services ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.support-services li {
    color: #444;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
    position: relative;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-services li::before {
    content: '';
}

.mission {
    font-size: 0.9rem;
    color: #000;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    margin-top: 2rem;
}

.tagline {
    font-size: 0.9rem;
    color: #000;
    font-weight: 300;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.call-info {
    background: #6b46c1;
    color: white;
    padding: 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.call-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.phone-numbers {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.call-info p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.8;
}

.call-info a {
    color: #fff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 0.3rem;
    border: 3px solid #fff;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.call-info a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #6b46c1;
    font-weight: 300;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.08);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107, 70, 193, 0.15);
}

.service-card h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

#services {
    background: #f8f9fa;
}

#about p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.contact-info strong {
    color: #6b46c1;
    font-weight: 500;
}

.contact-info a {
    color: #6b46c1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #5a3aa7;
    text-decoration: underline;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, textarea, button[type="submit"] {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f8f8;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #6b46c1;
    background: white;
}

button[type="submit"] {
    background: #6b46c1;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    border-radius: 50px;
}

button[type="submit"]:hover {
    background: #5a3aa7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

#form-response {
    text-align: center;
    font-weight: 500;
}

footer {
    background: white;
    color: #6b46c1;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 5rem;
}

/* Team Page Styles */
.team-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-header h2 {
    color: #6b46c1;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -2px;
}

.team-header p {
    color: #666;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.team-member {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.15);
}

.team-member h3 {
    color: #6b46c1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.team-role {
    color: #764ba2;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.team-bio {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    nav {
        gap: 1rem;
    }
    
    .logo-img {
        height: 40px;
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 5rem 2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .team-header h2 {
        font-size: 2.5rem;
    }
}

/* Development Page Styles */
.development-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.development-header h2 {
    color: #6b46c1;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -2px;
}

.dev-intro {
    color: #666;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.development-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dev-services {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    margin-bottom: 3rem;
}

.dev-services h3 {
    color: white;
    background: linear-gradient(135deg, #6b46c1 0%, #764ba2 100%);
    font-size: 2.5rem;
    margin: -2.5rem -2rem 2rem -2rem;
    padding: 3rem 2rem;
    text-align: center;
    font-weight: 500;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
    letter-spacing: -1px;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dev-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.dev-item h4 {
    color: #6b46c1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.dev-item p {
    color: #666;
    line-height: 1.6;
}

.tech-stack {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.tech-stack h3 {
    color: #6b46c1;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.tech-stack p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.dev-cta {
    background: #6b46c1;
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
}

.dev-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.dev-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-btn {
    background: white;
    color: #6b46c1;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Additional styles for cancer projects page */
.project-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.project-info h4 {
    color: #6b46c1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.impact-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    margin: 3rem 0;
}

.impact-section h3 {
    color: #6b46c1;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.impact-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6b46c1, #764ba2);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.impact-card h4 {
    font-size: 3rem;
    color: #6b46c1;
    margin-bottom: 0.5rem;
}

.cost-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    margin: 2rem 0;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cost-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
}

.cost-item.highlight {
    border-color: #6b46c1;
    background: rgba(107, 70, 193, 0.05);
}

.cost-amount {
    font-size: 2rem;
    font-weight: 600;
    color: #6b46c1;
    margin: 1rem 0;
}

.partnership-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.significance-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    margin: 3rem 0;
}

.significance-section h3 {
    color: #6b46c1;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.significance-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6b46c1, #764ba2);
}

.significance-list {
    list-style: none;
    padding: 0;
}

.significance-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.significance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b46c1;
    font-weight: bold;
    font-size: 1.2rem;
}

.project-separator {
    height: 2px;
    background: linear-gradient(to right, transparent, #6b46c1, transparent);
    margin: 3rem 0;
}