* {
	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-color: #f8fafc;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: white;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo div {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
}

.nav-menu a:hover {
	opacity: 0.8;
}

.btn-register {
	background: #f59e0b;
	color: white;
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-register:hover {
	background: #d97706;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: white;
	padding: 120px 0 80px;
	margin-top: 0;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-description {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.btn-primary {
	background: #f59e0b;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 3rem;
}

.btn-primary:hover {
	background: #d97706;
	transform: translateY(-2px);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #f59e0b;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Trust Section */
.trust-section {
	padding: 80px 0;
	background: white;
}

.trust-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e3a8a;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	align-items: center;
}

.partner-logo {
	text-align: center;
	padding: 1rem;
	border-radius: 10px;
	transition: transform 0.3s;
}

.partner-logo:hover {
	transform: translateY(-5px);
}

.partner-logo img {
	width: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

.partner-logo:hover img {
	filter: grayscale(0%);
}

/* Calculator Section */
.calculator-section {
	padding: 80px 0;
	background: #f8fafc;
}

.calculator-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e3a8a;
}

.calculator-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.calculator-form {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #374151;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #3b82f6;
}

.btn-calculate {
	width: 100%;
	background: #1e3a8a;
	color: white;
	border: none;
	padding: 1rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-calculate:hover {
	background: #1e40af;
}

.result-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.result-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e3a8a;
}

.result-amount {
	font-size: 3rem;
	font-weight: bold;
	color: #10b981;
	margin-bottom: 1.5rem;
}

.result-details {
	margin-bottom: 1.5rem;
}

.result-details p {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.disclaimer {
	font-size: 0.9rem;
	color: #6b7280;
	font-style: italic;
}

/* Tools Section */
.tools-section {
	padding: 80px 0;
	background: white;
}

.tools-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #1e3a8a;
	margin-left: auto;
	margin-right: auto;
}

.tools-intro {
	text-align: center;
	margin: 0 auto 4rem;
}
.error-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
}
.error-section .btn-calculate {
	width: auto;
	margin-top: 40px;
}
.tools-intro p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: #4b5563;
	line-height: 1.7;
}

.tools-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.tool-card {
	background: #f8fafc;
	padding: 2rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	border-radius: 15px;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 2px solid transparent;
}

.tool-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border-color: #3b82f6;
}

.tool-icon img {
	width: 240px;
	height: 240px;
	border-radius: 10px;
}

.tool-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e3a8a;
}

.tool-card p {
	color: #4b5563;
	line-height: 1.6;
}

/* Security Section */
.security-section {
	padding: 80px 0;
	background: #f8fafc;
}

.security-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e3a8a;
}

.security-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.security-item h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #1e3a8a;
}

.security-item p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #4b5563;
}

/* Access Section */
.access-section {
	padding: 80px 0;
	background: white;
	text-align: center;
}

.access-section h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #1e3a8a;
}

.access-content {
	margin: 0 auto;
}

.access-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #4b5563;
	line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
	padding: 80px 0;
	background: #f8fafc;
}

.advantages-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.advantages-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

.advantage-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-number {
	display: inline-block;
	background: #f59e0b;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-weight: bold;
	margin-bottom: 1rem;
}

.advantage-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e3a8a;
}

.advantage-card p {
	color: #4b5563;
	line-height: 1.6;
}

.cta-section {
	text-align: center;
	margin-top: 3rem;
}

/* Overview Section */
.overview-section {
	padding: 80px 0;
	background: white;
}

.overview-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.overview-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.feature-icon {
	background: #10b981;
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
	font-weight: bold;
}

.feature-text h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #1e3a8a;
}

.feature-text p {
	color: #4b5563;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: #f8fafc;
}

.faq-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 4rem;
	color: #1e3a8a;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #1e3a8a;
}

.faq-item p {
	color: #4b5563;
	line-height: 1.6;
}

.faq-item ul {
	list-style: none;
	padding-left: 0;
}

.faq-item li {
	padding: 0.5rem 0;
	color: #4b5563;
	position: relative;
	padding-left: 1.5rem;
}

.faq-item li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
}

/* Footer */
.footer {
	background: #1f2937;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 2rem;
	margin-bottom: 2rem;
}
.footer-section div {
	font-weight: bold;
	font-size: 1.3rem;
	color: #f59e0b;
}
.modal-title {
	font-weight: bold;
	font-size: 1.5rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: #f59e0b;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
	color: #9ca3af;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 2rem;
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	position: relative;
}

.close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 2rem;
	cursor: pointer;
	color: #6b7280;
}

.close:hover {
	color: #374151;
}

.registration-form .form-group {
	margin-bottom: 1.5rem;
}
* {
	box-sizing: border-box;
}
/* Responsive Design */
@media (max-width: 768px) {
	h2 {
		font-size: 1.5rem !important;
	}
	h3 {
		font-size: 1.3rem !important;
	}
	p {
		font-size: 1rem !important;
	}
	.calculator-section,
	.trust-section,
	.tools-section,
	.security-section,
	.access-section,
	.advantages-section,
	.overview-section {
		padding: 40px 0;
	}
	.tool-card {
		flex-direction: column;
		padding: 1rem;
		width: 100%;
	}
	.nav-menu {
		display: none;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.calculator-content,
	.security-content,
	.overview-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tools-grid,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.section {
		padding: 60px 0;
	}

	.modal-content {
		margin: 10% auto;
		padding: 1.5rem;
	}
}
