/* 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-color: #ffffff;
}

/* Canva Layout */
.layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.logo-container {
    text-align: center;
}

.site-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Hero Section */
.hero-section {
    margin-bottom: 3rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.title-box {
    background: linear-gradient(135deg, #7dd3fc, #67e8f9);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    position: relative;
}

.title-box h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin: 0;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arrow-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    flex-shrink: 0;
}

.arrow {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Description Section */
.description-section {
    margin-bottom: 3rem;
}

.description-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-description {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sub-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Tutoring Section */
.tutoring-section {
    margin-bottom: 3rem;
}

.tutoring-container {
    display: flex;
    justify-content: center;
}

.tutoring-box {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    max-width: 500px;
}

.tutoring-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    margin-bottom: 3rem;
}

.features-container {
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.final-cta {
    margin-top: 2rem;
}

/* About Section */
.about-section {
    margin-bottom: 3rem;
}

.about-container {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

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

.andrew-photo {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 5%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.final-cta-bottom, .tutoring-box p {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .layout {
        padding: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .title-box h1 {
        font-size: 2.5rem;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .tutoring-box h2 {
        font-size: 2rem;
    }
    
    .about-container h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.submit-button {
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #3498db;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}
