/* Reset and base styles */
* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
    text-decoration: none;
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* Main content */
.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

/* Section styles */
section {
    margin: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.section-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* About section */
.about-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Vision and Mission section */
.vision-mission-section {
    margin: 4rem 0;
}

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

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7b68ee, #9b59b6);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    color: #7b68ee;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Contact section */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Terms and Services page styles */
.terms-page {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.terms-content {
    line-height: 1.8;
    color: #555;
}

.terms-content h1 {
    color: #4a90e2;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.terms-content h2 {
    color: #7b68ee;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.terms-content h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.terms-content p {
    margin-bottom: 1rem;
}

.terms-content ul, .terms-content ol {
    margin: 1rem 0 1rem 2rem;
}

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

.terms-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #7b68ee;
    text-decoration: underline;
}

.terms-content a[href^="mailto:"] {
    color: #4a90e2;
    font-weight: 500;
}

.terms-content a[href^="mailto:"]:hover {
    color: #7b68ee;
}

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

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

    .main-content {
        margin-top: 120px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section,
    .contact-section,
    .terms-page {
        padding: 2rem;
        margin: 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-section,
    .contact-section,
    .terms-page {
        padding: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

