* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: #2c5282;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 2rem;
}

       
.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: #3182ce;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2b6cb0;
}

.btn-buy {
    background: #38a169;
}

.btn-buy:hover {
    background: #2f855a;
}


		/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #4a5568;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
}

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

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #3182ce;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.step-item p {
    color: #4a5568;
}

/* Supported Formats */
.formats {
    padding: 4rem 0;
    background: #fff;
}

.formats-header {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.formats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.format-tag {
    padding: 8px 18px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 14px;
    color: #4a5568;
}

.format-tag.highlight {
    background: #2c5282;
    color: #fff;
    border-color: #2c5282;
}

/* Conversion Examples */
.conversion-example {
    padding: 4rem 0;
}

.example-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
}

.example-card h3 {
    text-align: center;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.example-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.example-tab {
    padding: 8px 18px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.example-tab.active {
    background: #3182ce;
    color: #fff;
    border-color: #3182ce;
}

.example-content {
    display: none;
}

.example-content.active {
    display: block;
}

.example-code {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 1.2rem;
    border-radius: 6px;
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    overflow-x: auto;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.example-note {
    font-size: 14px;
    color: #4a5568;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: #fff;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.faq-item h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #4a5568;
}

/* Footer */
footer {
    background: #2d3748;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

		
footer a {
    color:#cbd5e1; text-decoration:none; margin:0 0.5rem;
}

footer a:hover {
    color:#fff;
}

footer p {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

		.main-shot {
			width:100%;
			max-width:962px;
		}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.9rem;
    }

    header p {
        font-size: 1rem;
    }

    .hero h2,
    .section-title {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
