* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #1A242C;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 114, 200, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A242C;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1A242C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #5E72C8;
}

.btn-primary {
    background: linear-gradient(90deg, #2E47B5, #AAB6E6);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(94, 114, 200, 0.4);
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"><rect fill="%23667eea" width="1600" height="900"/><polygon fill="%23f093fb" points="957 450 539 900 1396 900"/><polygon fill="%235b73e8" points="957 450 872.9 900 1396 900"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Blog Content */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A242C;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A242C;
    margin: 3rem 0 1.5rem;
    position: relative;
}

.blog-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    border-radius: 2px;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A242C;
    margin: 2rem 0 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #4A5568;
}

.blog-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: #4A5568;
}

.highlight-box {
    background: linear-gradient(135deg, #F7FAFC, #EDF2F7);
    border-left: 4px solid #5E72C8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 114, 200, 0.1));
}

.highlight-box h4 {
    color: #1A242C;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1A242C;
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #A4A4A4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5E72C8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-container {
        padding: 3rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(26, 36, 44, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: white;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(94, 114, 200, 0.2);
        color: #AAB6E6;
    }
}
/* Additional styles for contact page */
        .contact-main {
            padding: 5rem 2rem;
            background: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-image {
            background: #F5F5F5;
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .contact-image i {
            color: #5E72C8;
            font-size: 5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .form-container {
            width: 100%;
        }

        .contact-form-inputs {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form-inputs input,
        .contact-form-inputs textarea {
            padding: 1rem;
            border: 1px solid #E9E9E9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .contact-form-inputs input:focus,
        .contact-form-inputs textarea:focus {
            outline: none;
            border-color: #5E72C8;
            box-shadow: 0 0 0 3px rgba(94, 114, 200, 0.1);
        }

        .contact-form-inputs textarea {
            resize: vertical;
            min-height: 120px;
        }

        .success-message {
            text-align: center;
            padding: 2rem;
            background: #F0FDF4;
            border-radius: 12px;
            border: 1px solid #BBF7D0;
            display: none;
        }

        .success-icon {
            font-size: 3rem;
            color: #5E72C8;
            margin-bottom: 1rem;
        }

        .success-message h3 {
            color: #1A242C;
            margin-bottom: 0.5rem;
        }

        .success-message p {
            color: #707070;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2E47B5, #AAB6E6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: #1A242C;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: #707070;
            margin: 0;
        }

        .btn-outline {
            background: transparent;
            color: #5E72C8;
            padding: 1rem 2rem;
            border: 2px solid #5E72C8;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline:hover {
            background: linear-gradient(90deg, #2E47B5, #AAB6E6);
            color: white;
            border-color: #5E72C8;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(94, 114, 200, 0.3);
        }

        /* Additional info section */
        .additional-info {
            background: #F5F5F5;
            padding: 4rem 2rem;
            margin-top: 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(94, 114, 200, 0.2);
        }

        .info-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2E47B5, #AAB6E6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }

        .info-card h3 {
            color: #1A242C;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .info-card p {
            color: #707070;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-main {
                padding: 3rem 1rem;
            }
            
            .contact-form-inputs {
                gap: 0.75rem;
            }
            
            .contact-form-inputs input,
            .contact-form-inputs textarea {
                padding: 0.75rem;
                font-size: 0.95rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .additional-info {
                padding: 3rem 1rem;
            }
        }