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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.logo h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.logo p {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    letter-spacing: 0.3px;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    border-radius: 20px;
}

.logo:hover::before {
    left: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
}

.nav-links li {
    margin-left: 0;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.nav-link::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.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

main {
    margin-top: 80px;
    flex: 1;
}

.hero {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0.5rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
    min-width: 180px;
    text-align: center;
}

.btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 50%, #ec4899 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background-size: 200% 200%;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
    background: white;
    color: #5a67d8;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    border-color: white;
}

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

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

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Button group spacing */
.cta-buttons .btn + .btn {
    margin-left: 1rem;
}

.philosophy {
    background: white;
    padding: 4rem 0;
    text-align: left;
}

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

.philosophy-header h2 {
    font-size: 3rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.philosophy-subtitle {
    font-size: 1.3rem;
    color: #667eea;
    font-style: italic;
    font-weight: 500;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-main {
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-main h3 {
    font-size: 2.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.philosophy-main p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-principles {
    margin-bottom: 3rem;
}

.philosophy-principles h3 {
    font-size: 2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.principle-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.principle-card h4 {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

.philosophy-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.philosophy-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.philosophy-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -2rem;
    top: -1rem;
    opacity: 0.3;
}

.philosophy-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
    font-style: normal;
}

.philosophy-application h3 {
    font-size: 2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: center;
}

.application-list {
    list-style: none;
    padding: 0;
}

.application-list li {
    background: #f7fafc;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-size: 1.1rem;
    line-height: 1.6;
}

.application-list strong {
    color: #4a5568;
}

.ideas-grid {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(12px);
}

.ideas-grid h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a5568 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 
        0 6px 25px rgba(102, 126, 234, 0.12),
        0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.25s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.18),
        0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a5568 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.card:hover h4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

footer .footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border: 1px solid rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

footer .footer-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
    color: white;
}

footer .footer-links a::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.5s ease;
}

footer .footer-links a:hover::before {
    left: 100%;
}

/* Contact button styling removed - now appears enabled */

.hidden {
    display: none;
}

.page-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

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

.content-section h2 {
    font-size: 2rem;
    color: #4a5568;
    margin-bottom: 1rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    color: #718096;
    margin-left: 2rem;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-block;
    margin: 0.5rem 0 2rem 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.back-button:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 50%, #ec4899 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background-size: 200% 200%;
}

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

.back-button:hover::before {
    left: 100%;
}

.back-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.back-button:active::after {
    width: 300px;
    height: 300px;
}

.back-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .cta-buttons .btn + .btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .ideas-grid h3 {
        font-size: 1.25rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        padding: 0.5rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.85rem;
    }
    
    footer .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    footer p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    /* Business idea pages mobile optimization */
    .page-header {
        padding: 1.5rem 1rem;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .page-header .subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .back-button {
        margin: 1rem 0 1.5rem 0;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        min-width: auto;
        width: auto;
        display: inline-block;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.4rem;
        border-bottom-width: 2px;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .content-section ul {
        margin-left: 1.2rem;
        line-height: 1.6;
        font-size: 0.9rem;
    }
    
    .content-section li {
        margin-bottom: 0.4rem;
        padding-right: 0.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .highlight-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .highlight-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .philosophy-header h2 {
        font-size: 2rem;
    }
    
    .philosophy-main h3 {
        font-size: 1.8rem;
    }
    
    .philosophy-main p {
        font-size: 1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-quote {
        padding: 2rem;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.2rem;
    }
    
    .philosophy-quote blockquote::before {
        left: -1rem;
        font-size: 3rem;
    }
}

/* Philosophy Page Specific Styles */
.philosophy-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.philosophy-hero h2 {
    font-size: 3rem;
    color: #4a5568;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-hero .lead {
    font-size: 1.3rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.principle-card h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: center;
}

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.application-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.application-item h3 {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.application-item h3::before {
    content: '→';
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.application-item p {
    color: #718096;
    line-height: 1.7;
}

.philosophy-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.philosophy-cta p {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .philosophy-hero h2 {
        font-size: 2rem;
    }
    
    .philosophy-hero .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .principle-card {
        padding: 2rem;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-cta {
        padding: 2rem;
    }
    
    .philosophy-cta h2 {
        font-size: 2rem;
    }
}