.slots-page-dev .page-body-dev {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .slots-page-dev .page-body-dev {
    padding: 40px 0 20px;
  }
}
.slots-page-dev .article-page-dev {
  max-width: 835px;
  margin: 0 auto;
  float: none;
}

.slots-gam-dev {
  background-color: #EFF0F2;
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .slots-gam-dev {
    padding: 32px 0;
  }
}

.slots__top {
  margin: 0 0 120px 0;
}
@media (max-width: 767px) {
  .slots__top {
    margin: 0 0 80px 0;
  }
}
.slots__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slots__cta a, .slots__cta button {
  cursor: pointer;
  height: 51px;
  line-height: 51px;
  border: 0;
  float: left;
  padding: 0 40px;
  background-color: #204289;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 100px;
  transition: 0.3s all;
}
.slots__cta a:hover, .slots__cta button:hover {
  background-color: #c7ba89;
  color: #204289;
}

.slots-game {
  clear: both;
}
.slots-game__all {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  grid-gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .slots-game__all {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
.slots-game__title {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
  text-align: center;
  color: #334250;
}
@media (max-width: 767px) {
  .slots-game__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
}
.slots-game__count {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #334250;
}
@media (max-width: 767px) {
  .slots-game__count {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}
.slots-game__top-row {
  margin-bottom: 40px;
}

.slots_small__img.hero-thumbnail {
  height: 200px;
}
.slots_small__img {
  margin-bottom: 16px;
}
.slots_small__img img {
  width: 100%;
}
.slots_small__title {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.44px;
  color: #334250;
}
.slots_small__dev {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: #334250;
  padding-top: 16px;
  border-top: 1px solid rgba(51, 66, 80, 0.2);
}

/*# sourceMappingURL=custom.css.map */

/* Bottom Tools & Author Card */
.bottom-article-tools {
    background: #fdfdfd;
    padding: 35px; /* Slightly increased for better breathing room */
    border: 1px solid #eee;
    border-radius: 15px;
    margin-top: 40px;
    box-sizing: border-box; /* Ensures padding doesn't break the layout width */
}

.tag-pills a {
    display: inline-block;
    padding: 6px 16px; /* Added slightly more padding between pill bg and text */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    margin: 4px;
}

.author-card-modern {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.author-avatar img, .avatar-letter {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.author-details {
    padding-right: 15px; /* Adds padding on the right side of the text */
}

.author-details .label { 
    font-size: 11px; 
    font-weight: 800; 
    color: #888; 
    letter-spacing: 1px; 
}

.author-details h4 { 
    margin: 5px 0 10px; 
    font-weight: 800; 
}

.author-details p { 
    font-size: 15px; 
    line-height: 1.6; 
    color: #555; 
    margin-bottom: 10px;
}

/* Must Read Next Grid */
.must-read-modern { 
    margin-top: 60px; 
}

.section-title { 
    font-size: 26px; 
    font-weight: 900; 
    margin-bottom: 30px; 
}

.mr-card { 
    display: block;
    text-decoration: none !important; 
    color: #333; 
    background: #fff; /* Added explicit background so padding makes sense */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Optional: adds a soft border shadow */
}

.mr-image { 
    height: 160px; 
    overflow: hidden; 
}

.mr-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.3s; 
}

.mr-card:hover .mr-image img { 
    transform: scale(1.05); 
}

/* NEW: Added padding around the text inside the card */
.mr-content {
    padding: 25px; /* Equal gap on all 4 sides */
    box-sizing: border-box; /* Keeps the card from stretching wider */
}

.mr-cat { 
    font-size: 11px; 
    font-weight: 700; 
    color: #e67e22; 
    text-transform: uppercase; 
    display: block;
    margin-bottom: 8px; /* Added space between category and title */
}

.mr-card h5 { 
    font-size: 16px; 
    font-weight: 800; 
    line-height: 1.4; 
    margin: 0; 
}

/* Dynamic Disclaimer Styling */
.dynamic-disclaimer {
    background: #f8f9fa;
    border-left: 4px solid #dcdcdc; /* Subtle gray line to indicate a note */
    padding: 12px 18px;
    margin-top: 20px;
    margin-bottom: 30px; /* Space between the disclaimer and the main text */
    font-size: 14px;
    font-style: italic;
    color: #666;
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.dynamic-disclaimer a {
    color: #444;
    text-decoration: underline;
    font-weight: bold;
}

.dynamic-disclaimer a:hover {
    color: #000;
}
/* Fix for the More Resources Slider Images */
.more-articles .item .thumbnail {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px; /* Adds nice rounded corners to the cards */
}

.more-articles .item .thumbnail img {
    width: 100%;
    height: 180px; /* Forces all images to be the exact same height */
    object-fit: cover; /* Prevents squishing/stretching; crops nicely instead */
    display: block;
    transition: transform 0.3s ease; /* Optional: smooth setup for a hover effect */
}

/* Optional: Slight zoom effect when a user hovers over a card */
.more-articles .item:hover .thumbnail img {
    transform: scale(1.05);
}
.article-page .featured-image .image img {
    width: 100%;       /* Forces the image to stretch edge-to-edge in its column */
    max-width: 100%; 
    height: auto; 
    max-height: 500px; /* Prevents the image from getting ridiculously tall on desktop */
    object-fit: cover; /* Ensures the image doesn't warp or stretch weirdly */
    display: block;
    border-radius: 8px; /* Optional: adds a nice modern curve to the corners */
}

/*----MORE RESOURCES SECTION----*/

.more-resources {
	width: 100%;
	float: left;
	padding: 60px 0 70px;
	background: #f4f6f8;
	border-top: 1px solid #e1e5ea;
	margin-top: 40px;
}

.more-resources-title {
	font-size: 28px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 32px 0;
	padding: 0;
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.resource-card {
	display: flex;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e1e5ea;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.resource-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: #d0deea;
}

.resource-thumb {
	width: 140px;
	min-width: 140px;
	height: 120px;
	overflow: hidden;
	flex-shrink: 0;
}

.resource-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.resource-card:hover .resource-thumb img {
	transform: scale(1.06);
}

.resource-info {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.resource-cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ff6900;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.resource-heading {
	font-size: 15px;
	font-weight: 600;
	color: #1D3B69;
	line-height: 1.4;
	margin: 0 0 8px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.resource-card:hover .resource-heading {
	color: #204289;
}

.resource-date {
	font-size: 12px;
	color: #8E8F9D;
}

/* Tablet: 2 columns */
@media only screen and (max-width: 991px) {
	.resources-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.resource-thumb {
		width: 120px;
		min-width: 120px;
		height: 110px;
	}
}

/* Mobile: 1 column, stacked cards */
@media only screen and (max-width: 575px) {
	.more-resources {
		padding: 40px 0 50px;
	}

	.more-resources-title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.resources-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.resource-card {
		flex-direction: row;
	}

	.resource-thumb {
		width: 110px;
		min-width: 110px;
		height: 100px;
	}

	.resource-info {
		padding: 12px 14px;
	}

	.resource-heading {
		font-size: 14px;
	}
}

/* Fix Archive Horizontal Cards */
.post-cards.horizontal .item {
    display: flex;
    flex-direction: row-reverse; /* This puts the image on the left even if it's second in the HTML */
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-cards.horizontal .thumbnail {
    flex: 0 0 320px; /* Forces the image to stay exactly 320px wide */
    max-width: 320px;
}

.post-cards.horizontal .thumbnail img {
    width: 100%;
    height: 200px; /* Uniform height for a professional look */
    object-fit: cover;
    border-radius: 12px;
}

.post-cards.horizontal .data {
    flex: 1; /* Takes up the remaining space */
}

.post-cards.horizontal .heading {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}

.post-cards.horizontal .title span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    display: block;
}

/* Fix for Sidebar visibility */
.col-lg-9 {
    max-width: 75%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .post-cards.horizontal .item {
        flex-direction: column; /* Stack them on mobile */
    }
    .post-cards.horizontal .thumbnail {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*----ABOUT PAGE STYLES----*/

.about-hero {
	background: linear-gradient(135deg, #1A365D 0%, #2D5A8C 100%);
	color: #fff;
	padding: 80px 0;
	text-align: center;
	margin: 40px 0;
	border-radius: 0;
}

.about-hero .container {
	max-width: 750px;
}

.hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

@media only screen and (max-width: 767px) {
	.about-hero {
		padding: 50px 0;
	}

	.hero-content h1 {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
	}
}

/*----ABOUT SECTIONS----*/

.about-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e1e5ea;
}

.about-section h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 20px 0;
	padding: 0;
}

.about-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin: 0 0 15px 0;
}

.about-section p:last-child {
	margin-bottom: 0;
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.about-list li {
	padding: 12px 0 12px 30px;
	position: relative;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

.about-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #ff6900;
	font-weight: 700;
	font-size: 18px;
}

.about-list strong {
	color: #1A365D;
	font-weight: 600;
}

/*----DISCLAIMER BOX----*/

.about-disclaimer {
	background: #f8f9fa;
	border-left: 4px solid #ff6900;
	padding: 25px;
	border-radius: 0 8px 8px 0;
	margin-top: 50px;
}

.about-disclaimer h3 {
	font-size: 16px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 10px 0;
}

.about-disclaimer p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.about-disclaimer strong {
	color: #1A365D;
}

/*----SIDEBAR----*/

.about-sidebar {
	background: #fff;
	border: 1px solid #e1e5ea;
	border-radius: 10px;
	padding: 28px;
}

.sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 12px 0;
	padding: 0;
}

.about-sidebar p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 15px 0;
}

.btn-primary {
	display: inline-block;
	background: #204289;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: #1A365D;
	transform: translateY(-2px);
}

.sidebar-divider {
	height: 1px;
	background: #e1e5ea;
	margin: 25px 0;
}

.sidebar-categories,
.sidebar-posts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-categories li,
.sidebar-posts li {
	padding: 8px 0;
	margin: 0;
	border-bottom: 1px solid #f0f1f3;
}

.sidebar-categories li:last-child,
.sidebar-posts li:last-child {
	border-bottom: none;
}

.sidebar-categories a,
.sidebar-posts a {
	font-size: 14px;
	color: #204289;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sidebar-categories a:hover,
.sidebar-posts a:hover {
	color: #1A365D;
	text-decoration: underline;
}

@media only screen and (max-width: 991px) {
	.about-section h2 {
		font-size: 24px;
	}

	.about-sidebar {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 575px) {
	.about-section {
		margin-bottom: 35px;
		padding-bottom: 30px;
	}

	.about-section h2 {
		font-size: 20px;
	}

	.about-section p {
		font-size: 15px;
	}

	.about-list li {
		padding-left: 28px;
		font-size: 14px;
	}

	.about-disclaimer {
		padding: 20px;
		margin-top: 35px;
	}

	.about-sidebar {
		margin-top: 30px;
		padding: 20px;
	}

	.sidebar-title {
		font-size: 15px;
	}

	.about-sidebar p {
		font-size: 13px;
	}
}
/*----LEGAL PAGES (Privacy Policy & Terms of Service)----*/

.legal-page {
	width: 100%;
	float: left;
	background: #fff;
}

.legal-content {
	padding: 0;
}

.legal-content h1 {
	font-size: 36px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1.2;
}

.last-updated {
	font-size: 13px;
	color: #8E8F9D;
	font-style: italic;
	margin: 0 0 40px 0;
}

.legal-content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #1A365D;
	margin: 40px 0 15px 0;
	padding: 0;
	margin-top: 45px;
	padding-top: 20px;
	border-top: 1px solid #f0f1f3;
}

.legal-content h2:first-of-type {
	margin-top: 30px;
	padding-top: 0;
	border-top: none;
}

.legal-content h3 {
	font-size: 16px;
	font-weight: 600;
	color: #2D3D4D;
	margin: 25px 0 12px 0;
	padding: 0;
}

.legal-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin: 0 0 15px 0;
}

.legal-content ul {
	list-style: none;
	padding: 0;
	margin: 15px 0 20px 0;
}

.legal-content ul li {
	padding: 8px 0 8px 28px;
	position: relative;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.legal-content ul li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #204289;
	font-weight: 700;
	font-size: 16px;
}

.legal-content strong {
	color: #1A365D;
	font-weight: 600;
}

.legal-content a {
	color: #204289;
	text-decoration: none;
	transition: color 0.2s ease;
}

.legal-content a:hover {
	color: #1A365D;
	text-decoration: underline;
}

.contact-info {
	background: #f8f9fa;
	border: 1px solid #e1e5ea;
	padding: 20px;
	border-radius: 6px;
	margin: 20px 0;
}

.contact-info p {
	margin: 0;
	font-size: 14px;
}

/*----LEGAL SIDEBAR----*/

.legal-sidebar {
	background: #fff;
	border: 1px solid #e1e5ea;
	border-radius: 10px;
	padding: 25px;
	position: sticky;
	top: 20px;
}

.sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 15px 0;
	padding: 0;
}

.legal-sidebar p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 15px 0;
}

.legal-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.legal-links li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f0f1f3;
}

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

.legal-links a {
	display: block;
	padding: 12px 0;
	color: #204289;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
}

.legal-links a:hover {
	color: #1A365D;
	padding-left: 5px;
}

.legal-links a.active {
	color: #1A365D;
	font-weight: 600;
	background: #f8f9fa;
	padding-left: 10px;
	margin: 0 -10px;
	padding-right: 10px;
}

.sidebar-divider {
	height: 1px;
	background: #e1e5ea;
	margin: 20px 0;
}

.btn-secondary {
	display: inline-block;
	background: #204289;
	color: #fff;
	padding: 11px 22px;
	border-radius: 6px;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-secondary:hover {
	background: #1A365D;
	transform: translateY(-2px);
}

/*----RESPONSIVE----*/

@media only screen and (max-width: 991px) {
	.legal-sidebar {
		margin-top: 40px;
		position: static;
	}

	.legal-content h1 {
		font-size: 28px;
	}

	.legal-content h2 {
		font-size: 20px;
	}

	.legal-content h3 {
		font-size: 15px;
	}
}

@media only screen and (max-width: 575px) {
	.legal-content h1 {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.last-updated {
		margin-bottom: 30px;
	}

	.legal-content h2 {
		font-size: 18px;
		margin-top: 35px;
		margin-bottom: 12px;
	}

	.legal-content h3 {
		font-size: 14px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.legal-content p {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.legal-content ul li {
		padding-left: 24px;
		font-size: 14px;
	}

	.legal-sidebar {
		margin-top: 30px;
		padding: 20px;
	}

	.sidebar-title {
		font-size: 15px;
		margin-bottom: 12px;
	}

	.legal-sidebar p {
		font-size: 13px;
	}

	.legal-links a {
		padding: 10px 0;
		font-size: 13px;
	}

	.contact-info {
		padding: 15px;
	}

	.contact-info p {
		font-size: 13px;
	}
}

/*----CONTACT PAGE STYLES----*/

.contact-hero {
	background: linear-gradient(135deg, #1A365D 0%, #2D5A8C 100%);
	color: #fff;
	padding: 70px 0;
	text-align: center;
	margin: 40px 0;
}

.contact-hero h1 {
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.contact-hero p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

/*----CONTACT FORM SECTION----*/

.contact-form-section {
	background: #fff;
	padding: 0;
}

.contact-form-section h2 {
	font-size: 26px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 10px 0;
	padding: 0;
}

.contact-form-section > p {
	font-size: 15px;
	color: #666;
	margin: 0 0 30px 0;
	line-height: 1.6;
}

.contact-form {
	margin: 30px 0;
}

.form-group {
	margin-bottom: 20px;
}

.contact-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #1A365D;
	margin: 0 0 8px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #204289;
	box-shadow: 0 0 0 3px rgba(32, 66, 137, 0.1);
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 25px 0;
}

.form-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
}

.form-checkbox label {
	margin: 0;
	font-weight: 400;
	cursor: pointer;
	line-height: 1.6;
	font-size: 14px;
}

.form-checkbox a {
	color: #204289;
	text-decoration: none;
}

.form-checkbox a:hover {
	text-decoration: underline;
}

.btn-submit {
	background: #204289;
	color: #fff;
	padding: 14px 32px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.btn-submit:hover {
	background: #1A365D;
	transform: translateY(-2px);
}

.form-note {
	font-size: 13px;
	color: #888;
	margin-top: 15px;
	margin-bottom: 0;
}

/*----SUCCESS/ERROR MESSAGES----*/

.form-success-message,
.form-error-message {
	padding: 16px 18px;
	border-radius: 6px;
	margin-bottom: 25px;
	font-size: 14px;
	line-height: 1.6;
}

.form-success-message {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.form-success-message strong {
	color: #155724;
}

.form-error-message {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.form-error-message strong {
	color: #721c24;
}

.form-error-message ul {
	list-style: none;
	padding: 8px 0 0 0;
	margin: 8px 0 0 0;
}

.form-error-message ul li {
	padding: 4px 0;
}

.form-error-message ul li:before {
	content: "• ";
	color: #721c24;
}

/*----CONTACT INFO SECTION----*/

.contact-info-section {
	padding: 0;
}

.contact-info-section h2 {
	font-size: 26px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 25px 0;
	padding: 0;
}

.contact-info-box {
	background: #fff;
	border: 1px solid #e1e5ea;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 18px;
}

.box-title {
	font-size: 16px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 12px 0;
	padding: 0;
}

.contact-info-box p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 10px 0;
}

.contact-info-box p:last-child {
	margin-bottom: 0;
}

.contact-link {
	display: inline-block;
	color: #204289;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
	word-break: break-all;
}

.contact-link:hover {
	color: #1A365D;
	text-decoration: underline;
}

/*----FAQ SECTION----*/

.contact-faq {
	width: 100%;
	float: left;
}

.contact-faq h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 40px 0;
	padding: 0;
	text-align: center;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.faq-item {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	border: 1px solid #e1e5ea;
}

.faq-question {
	font-size: 16px;
	font-weight: 700;
	color: #1A365D;
	margin: 0 0 12px 0;
	padding: 0;
	line-height: 1.4;
}

.faq-answer {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.faq-answer a {
	color: #204289;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

/*----RESPONSIVE----*/

@media only screen and (max-width: 991px) {
	.contact-hero h1 {
		font-size: 32px;
	}

	.contact-form-section h2,
	.contact-info-section h2 {
		font-size: 22px;
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.contact-hero {
		padding: 50px 0;
		margin: 30px 0;
	}

	.contact-hero h1 {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.contact-hero p {
		font-size: 15px;
	}

	.contact-form-section h2,
	.contact-info-section h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.contact-form-section > p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.contact-form label {
		font-size: 13px;
	}

	.contact-form input,
	.contact-form select,
	.contact-form textarea {
		font-size: 14px;
		padding: 11px 12px;
	}

	.btn-submit {
		padding: 12px 24px;
		font-size: 14px;
	}

	.contact-info-section {
		margin-top: 35px;
	}

	.contact-info-box {
		padding: 18px;
		margin-bottom: 15px;
	}

	.box-title {
		font-size: 15px;
	}

	.contact-info-box p {
		font-size: 13px;
	}

	.faq-item {
		padding: 18px;
	}

	.faq-question {
		font-size: 15px;
	}

	.faq-answer {
		font-size: 13px;
	}

	.contact-faq h2 {
		font-size: 22px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 575px) {
	.contact-hero {
		padding: 40px 0;
	}

	.contact-hero h1 {
		font-size: 24px;
	}

	.form-checkbox {
		gap: 8px;
	}

	.form-checkbox input[type="checkbox"] {
		width: 18px;
		height: 18px;
	}

	.contact-form-section > p,
	.contact-info-box p {
		font-size: 13px;
	}
}