/*
Theme Name: The Telephone Secretary
Theme URI: https://www.thetelephonesecretary.com
Description: White and clean theme almost without css styles. Fonts and colors will be default of your browser.
Version: 1.0
Author: The Telephone Secretary
Author URI: https://www.thetelephonesecretary.com
Tags: white, simple, fixed width, two columns, widgets, clean
*/
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}

p img {
	padding: 0;
	max-width: 100%;
	}
a img {
	border: none;
	}
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
	
img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

/* End Images */

/* blog page  */
div#sidebar {
    padding: 0px 20px;
    background: #5388c3;
    border: 1px solid #ccc;
}

/*paginatgion*/

.blog-pagination .nav_pagination {
    display: flex;
    flex-direction: row;
}
.blog-pagination .nav_pagination li {
    margin-right: 18px;
    
    padding: 0;
}
.blog-pagination .nav_pagination li.active a {
    background-color: #5388c2;
    color: #fff;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 30px 0;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.faq-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ed5c2e;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== FAQ Item ===== */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* ===== Question Button ===== */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 18px 55px 18px 20px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ed5c2e;
}

/* ===== Plus / Minus Icon ===== */
.faq-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: #5287C3;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(45deg);
  color: #ff5e14;
}

/* ===== Answer Box ===== */
.faq-answer {
  display: none;
  padding: 20px 20px 20px;
  color: #555;
  font-size: 16px;
  line-height: 26px;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqFade 0.35s ease;
}

/* ===== Animation ===== */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


