/* Reset and base styles */
* {
    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;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
    margin-bottom: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Header styles */
header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    color: #4a5568;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #718096;
    font-style: italic;
    text-align: center;
}

/* Main content styles */
main {
    padding: 20px 0;
}

.content {
    padding: 0 20px;
}

h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    padding-left: 15px;
}

h3 {
    color: #4a5568;
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Features section */
.features {
    background: #f7fafc;
    padding: 25px;
    border-radius: 0px;
    margin-top: 25px;
    border: 1px solid #e2e8f0;
}

.features ul {
    list-style: none;
    padding-left: 0;
}

.features li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.features li:last-child {
    border-bottom: none;
}

.getform {
    border-radius: 0px;
    margin-top: 25px;
    border: 1px solid #e2e8f0;
    padding: 0;
}
/* Iframe styles - hide scrollbar */
iframe {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

iframe::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    margin-top: 40px;
}

footer p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .content {
        padding: 0 10px;
    }
    
    .features {
        padding: 20px;
    }
}

/* Hover effects */
.container:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.8s ease-out;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        color: #e2e8f0;
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }

    .container {
        background: rgba(26, 32, 44, 0.95);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    h1 {
        color: #f7fafc;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .subtitle {
        color: #a0aec0;
    }

    h2 {
        color: #e2e8f0;
        border-left: 4px solid #4299e1;
    }

    h3 {
        color: #cbd5e0;
    }

    p {
        color: #e2e8f0;
    }

    header {
        border-bottom: 2px solid #4a5568;
    }

    .features {
        background: #2d3748;
        border: 1px solid #4a5568;
    }

    .features li {
        color: #cbd5e0;
        border-bottom: 1px solid #4a5568;
    }

    footer {
        border-top: 2px solid #4a5568;
    }

    footer p {
        color: #a0aec0;
    }
}
