.page h2 {
	font-size: 20px;
	margin: 0 0 20px;
	display: flex;
	padding: 10px 20px;
	background: #75b943;
	color: #fff;
	width: fit-content;
	border-radius: 5px;
}

.page h3 {
	font-size: 16px;
	margin: 14px 0 6px;
 	font-weight: 500;
	color: #75b943;
}

.page p {
	margin: 6px 0;
	line-height: 1.5;
}

.page .card {
	background: #fff;
	border-radius: 8px;
	padding: 16px 18px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	margin-top: 16px;
	border: 1px solid #eaeff5;
}

.page .small {
	font-size: 13px;
	color: #666;
}

.page .methods-table-wrapper {
	overflow-x: auto;
	margin-top: 8px;
}

.page table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.page th, td {
	padding: 8px 10px;
	border-bottom: 1px solid #75b943;
	text-align: left;
	vertical-align: top;
}

.page thead {
	background: #f2ffe9;
}

.page th {
	font-weight: 600;
	color: #75b943
}

.page tbody tr:nth-child(even) {
	background: #fafafa;
}

.page ul {
	margin: 6px 0;
}

.page li {
	margin-bottom: 4px;
}

.page .note {
	font-size: 13px;
	color: #555;
	margin-top: 6px;
}

.page .warning {
	font-size: 13px;
	border-left: 3px solid #d93025;
	background: #fff3f0;
	padding: 8px 10px;
	border-radius: 6px;
	margin-top: 8px;
}

.page .warning strong {
	display: block;
	margin-bottom: 4px;
}

.page .partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}
.page .partner-card {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	background: #fff;
	transition: transform 0.2s;
	cursor: pointer;
}
.page .partner-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.page .partner-name {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 5px;
	color: #75b943;
}
.page .partner-note {
	font-size: 0.85em;
	color: #e67e22;
	font-weight: 600;
}
.page .geo-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	list-style: none;
}
.page .geo-item {
	background: #f4f7f6;
	padding: 10px 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.page .geo-item span {
	color: #666;
	margin-left: 8px;
	font-size: 0.9em;
}
.page .terminal-info {
	background: #e3f2fd;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	border-left: 5px solid #2196F3;
}
.page .price-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
	font-size: 0.95em;
}
.page .price-table th, .price-table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}
.page .price-table th {
	font-weight: 600;
	color: #75b943;
}
.page .price-table tr:nth-child(even) {
	background-color: #fcfcfc;
}
.page .price-table tr:hover {
	background-color: #f1f1f1;
}
.page .free-shipping {
	color: #27ae60;
	font-weight: bold;
}
.page .alert-box {
	padding: 20px;
	border-radius: 6px;
	margin-top: 25px;
	display: flex;
	gap: 15px;
}
.page .alert-warning {
	background-color: #fff3cd;
	border: 1px solid #ffeeba;
	color: #856404;
}
.page .alert-info {
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}
.page .alert-icon {
	font-size: 24px;
	flex-shrink: 0;
}
.page .alert-content strong {
	display: block;
	margin-bottom: 5px;
}
.page .calc-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.page .btn-calc {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f2ffe9;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.9em;
	transition: background 0.3s;
	color: #75b943;
}
.page .btn-calc:hover {background-color: #75b943;color: #fff;}
.page .manager-contact {
	margin-top: 50px;
	background-color: #2c3e50;
	color: white;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
}
.page .manager-contact h3 {
	color: white;
	margin-top: 0;
	margin-bottom: 10px;
}
.page .contact-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-top: 20px;
	flex-wrap: wrap;
}
.page .contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1em;
}
.page .contact-link {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px dashed rgba(255,255,255,0.5);
	transition: opacity 0.3s;
}
.page .contact-link:hover {
	opacity: 0.8;
	border-bottom-style: solid;
}
.page .contact-icon {
	font-size: 1.2em;
}
.page .stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
}
.page .stat-item {
	flex: 1 1 150px;
	background: #f7f7f7;
	border-radius: 6px;
	padding: 10px 12px;
	text-align: left;
}
.page .stat-number {
	font-size: 20px;
	font-weight: 700;
}
.page .stat-label {
	font-size: 13px;
	color: #555;
}
.page .badge {
	font-size: 14px;
	font-weight: 500;
	padding: 5px 10px;
	background: #75b943;
}
.page .cert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 10px;
}

.page .cert-grid img {
	width: 100%;
	display: block;
	border-radius: 6px;
	border: 1px solid #ddd;
	background: #fff;
}

.page .team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 10px;
}

.page .team-card {
	background: #f7f7f7;
	border-radius: 8px;
	padding: 10px 10px 12px;
	text-align: center;
}

.page .team-card img {
	width: 100%;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 8px;
	aspect-ratio: 1 / 1;
}

.page .team-name {
	font-weight: 600;
}

.page .team-role {
	font-size: 13px;
	color: #555;
}
@media (max-width: 600px) {
	.page .delivery-container {
		padding: 20px;
	}
	.page .price-table th, .price-table td {
		padding: 8px;
		font-size: 0.85em;
	}
	.page .calc-buttons {
		flex-direction: column;
	}
	.page .btn-calc {
		text-align: center;
	}
	.page .contact-links {
		flex-direction: column;
		gap: 15px;
	}
}