/* ========================================
   Widerrufsbelehrung Sayfası - Modern Grid CSS
   Horizont Electronic
   ======================================== */

/* Page Container */
.widerruf-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}

/* ============================
   Header Section
   ============================ */
.widerruf-header {
	text-align: center;
	margin-bottom: 50px;
}

.widerruf-header h1 {
	font-size: 48px;
	color: #5C83A0;
	margin-bottom: 15px;
	font-weight: 700;
}

.widerruf-header .subtitle {
	font-size: 20px;
	color: #666;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
}

/* ============================
   Main Grid Layout
   ============================ */
.widerruf-main-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

/* ============================
   Feature Boxes (4 Grid)
   ============================ */
.feature-boxes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.feature-box {
	background: linear-gradient(135deg, #5C83A0 0%, #4a6d8a 100%);
	color: #fff;
	padding: 35px 25px;
	text-align: center;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(92, 131, 160, 0.25);
	transition: all 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(92, 131, 160, 0.4);
}

.feature-box-icon {
	font-size: 42px;
	margin-bottom: 18px;
}

.feature-box h3 {
	font-size: 19px;
	margin-bottom: 12px;
	font-weight: 700;
}

.feature-box p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.95;
}

/* ============================
   Content Sections
   ============================ */
.widerruf-section {
	background: #fff;
	border-radius: 16px;
	padding: 35px;
	margin-bottom: 30px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.widerruf-section h2 {
	font-size: 32px;
	color: #5C83A0;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 4px solid #5C83A0;
}

.widerruf-section h3 {
	font-size: 22px;
	color: #333;
	margin-bottom: 15px;
	margin-top: 30px;
	font-weight: 600;
}

.widerruf-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 18px;
}

/* ============================
   Info Cards (2 Column Grid)
   ============================ */
.info-cards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin: 30px 0;
}

.info-card {
	background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
	border-left: 5px solid #5C83A0;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
}

.info-card:hover {
	box-shadow: 0 8px 25px rgba(92, 131, 160, 0.15);
	transform: translateY(-3px);
}

.info-card h4 {
	font-size: 20px;
	color: #5C83A0;
	margin-bottom: 15px;
	font-weight: 700;
}

.info-card p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 10px;
}

/* ============================
   Contact Box
   ============================ */
.contact-box {
	background: linear-gradient(145deg, #5C83A0 0%, #4a6d8a 100%);
	color: #fff;
	padding: 35px;
	border-radius: 16px;
	box-shadow: 0 6px 25px rgba(92, 131, 160, 0.3);
}

.contact-box h4 {
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 700;
	border-bottom: 2px solid rgba(255,255,255,0.3);
	padding-bottom: 12px;
}

.contact-box p {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.7;
}

.contact-box a {
	color: #fff;
	text-decoration: underline;
}

/* ============================
   Quick Facts Grid (4 Column)
   ============================ */
.quick-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 35px 0;
}

.fact-item {
	background: #fff;
	border: 3px solid #e8e8e8;
	padding: 30px 20px;
	text-align: center;
	border-radius: 14px;
	transition: all 0.3s ease;
}

.fact-item:hover {
	border-color: #5C83A0;
	box-shadow: 0 8px 25px rgba(92, 131, 160, 0.2);
	transform: translateY(-5px);
}

.fact-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.fact-label {
	font-size: 13px;
	color: #888;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.fact-value {
	font-size: 18px;
	color: #5C83A0;
	font-weight: 700;
	line-height: 1.4;
}

/* ============================
   Formular Box
   ============================ */
.formular-box {
	background: #fff;
	border: 3px dashed #5C83A0;
	padding: 40px;
	margin: 35px 0;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(92, 131, 160, 0.12);
}

.formular-box h4 {
	font-size: 24px;
	color: #5C83A0;
	margin-bottom: 25px;
	font-weight: 700;
}

.formular-box p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.formular-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.formular-field {
	margin-bottom: 20px;
}

.formular-field label {
	display: block;
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
	font-weight: 600;
}

.formular-field .input-line {
	display: block;
	padding: 15px;
	background: #f5f5f5;
	border-radius: 8px;
	font-size: 15px;
	border: 1px solid #e0e0e0;
	min-height: 50px;
}

/* ============================
   Right Sidebar Cards
   ============================ */
.sidebar-card {
	background: linear-gradient(145deg, #fff8f0 0%, #fff 100%);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border: 2px solid #f0e6d8;
}

.sidebar-card h4 {
	font-size: 20px;
	color: #5C83A0;
	margin-bottom: 20px;
	font-weight: 700;
}

.sidebar-card p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.contact-list p {
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
}

.contact-list p:last-child {
	border-bottom: none;
}

/* ============================
   Rechtliche Hinweise
   ============================ */
.rechtliche-hinweise {
	background: linear-gradient(145deg, #fff8e1 0%, #fff9e6 100%);
	padding: 30px;
	border-radius: 16px;
	margin-top: 40px;
	border: 2px solid #f0e4c0;
}

.rechtliche-hinweise h3 {
	font-size: 22px;
	color: #5C83A0;
	margin-bottom: 18px;
	font-weight: 700;
}

.rechtliche-hinweise p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.agb-link {
	color: #5C83A0;
	text-decoration: underline;
	font-weight: 700;
	transition: color 0.3s ease;
}

.agb-link:hover {
	color: #4a6d8a;
}

/* ============================
   Responsive
   ============================ */
@media only screen and (max-width: 1024px) {
	.feature-boxes {
		grid-template-columns: repeat(2, 1fr);
	}

	.quick-facts {
		grid-template-columns: repeat(2, 1fr);
	}

	.widerruf-main-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 768px) {
	.widerruf-header h1 {
		font-size: 36px;
	}

	.widerruf-header .subtitle {
		font-size: 17px;
	}

	.feature-boxes {
		grid-template-columns: 1fr;
	}

	.quick-facts {
		grid-template-columns: 1fr;
	}

	.info-cards-grid {
		grid-template-columns: 1fr;
	}

	.formular-grid {
		grid-template-columns: 1fr;
	}

	.widerruf-section {
		padding: 25px;
	}

	.widerruf-section h2 {
		font-size: 26px;
	}
}
