* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Marcellus";
	color: #fff;
	background-color: #0a0e1e;
}
input, textarea {
	font-family: "Lato";
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
a {
    text-decoration: none;
    color: #000;
}
b, strong {
    font-weight: bolder;
}
em {
    font-style: italic;
}
ul li {
    display: list-item;
    list-style-type: disc;
}
ol li {
    display: list-item;
    list-style-type: decimal;
}
blockquote {
    border-left: 4px solid #3498db;
    padding: 10px 20px;
    margin: 20px;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
    quotes: "“" "”";
}

blockquote p {
    margin: 0;
}

blockquote::before {
    content: open-quote;
    font-size: 2em;
    line-height: 0;
    margin-right: 10px;
    vertical-align: -0.4em;
    color: #3498db;
}

blockquote::after {
    content: close-quote;
    font-size: 2em;
    line-height: 0;
    margin-left: 10px;
    vertical-align: -0.4em;
    color: #3498db;
}
ins {
    text-decoration: underline;
}
del {
    text-decoration: line-through;
}
.header-container {
	position: relative;
	background: no-repeat center top/cover;
	min-height: 800px;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgb(10 14 30 / 0%) 0%, rgb(10 14 30) 100%);
}
header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background-color: #282c3aa1;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.logo img {
	height: 50px;
}

.logoke img {
	height: 80px;
	text-align: center;
	margin: 20px auto;
	display: block;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

.menu {
	display: flex;
	gap: 30px;
}

.menu-items {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-items > li {
	position: relative;
	list-style-type: none;
}

.menu-items > li > a {
	text-decoration: none;
	color: #fff;
	font-size: 1em;
	padding: 10px 15px;
	display: block;
	transition: color 0.3s, background-color 0.3s;
}

.menu-items > li > a:hover {
	color: #ffcc00;
	background-color: #282c3a;
	border-radius: 10px;
}

.sub-menu {
	display: none;
	position: absolute;
	list-style: none;
	top: 100%;
	left: 0;
	background-color: #282c3a;
	padding: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	min-width: 150px;
	border-radius: 10px;
}

.sub-menu > li {
    list-style-type: none;
}

.sub-menu a {
	text-decoration: none;
	color: #fff;
	padding: 10px 15px;
	display: block;
	font-size: 0.9em;
	transition: background-color 0.3s, color 0.3s;
}

.sub-menu a:hover {
	background-color: #1b1e2a;
	color: #ffcc00;
	border-radius: 10px;
}

.menu-items > li:hover .sub-menu {
	display: block;
}

.menu-items > li:hover > a {
	color: #ffcc00;
}

.sub-menu {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.menu-items > li:hover .sub-menu {
	display: block;
	opacity: 1;
}

.phone {
	display: flex;
	gap: 15px;
}

.phone .btn {
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	font-size: 0.9em;
	text-align: center;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.3s ease;
}

.phone .phone-btn {
	background: #50546F;
}

.phone .phone-btn:hover {
	background: #3a406a;
}

.phone .convert-btn {
	background: #6b75bb;
}

.phone .convert-btn:hover {
	background: #2e3881;
}

.hero {
	position: relative;
	max-width: 1200px;
	margin: 30px auto 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	z-index: 10;
}
.hero .text {
	max-width: 50%;
}
.hero h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
}
.hero p {
	font-size: 1.2em;
	line-height: 1.5;
}
.hero img {
	max-width: 45%;
	border-radius: 10px;
	opacity: 0.75;
}
.exchange-rates {
	max-width: 1200px;
	margin: -200px auto 0 auto;
	background-color: #282c3a;
	padding: 20px;
	border-radius: 10px;
	z-index: 100;
	position: relative;
}
.exchange-rates .baslik {
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}
.exchange-rates .aciklama {
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #fff;
}
.prices-container {
	display: flex;
	gap: 20px;
}
.prices-container h3 {
	margin-bottom: 10px;
}

.prices-table {
	max-height: 500px;
	overflow-y: scroll;
	overflow-x: hidden;
	flex: 1;
	background-color: #1b1e2a;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}
.prices-table::-webkit-scrollbar {
	width: 3px;
}

.prices-table::-webkit-scrollbar-track {
	background: #363548; 
}

.prices-table::-webkit-scrollbar-thumb {
	background: #888; 
}

.prices-table::-webkit-scrollbar-thumb:hover {
	background: #555; 
}
.table-title {
	text-align: center;
	padding: 10px 0;
	font-size: 1.5em;
	font-weight: bold;
	background-color: #0077b6;
	color: #fff;
	margin: 0;
}
.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	font-size: 1em;
	border-bottom: 1px solid #686868;
}
.price-row.header {
	font-weight: bold;
	background-color: #282c3a;
	padding: 10px 15px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.price-row:last-child {
	border-bottom: none;
}
.price-row .status {
	flex: 0;
	font-weight: 600;
	padding: 10px 0;
}
.price-row .status i.sabit {
	margin-right: 10px;
	color: #7979e7;
}
.price-row .status i.dususte {
	margin-right: 10px;
	color: #ff414a;
	animation: dususte 2s infinite alternate;
}
.price-row .status i.yukseliste {
	margin-right: 10px;
	color: #04bf8d;
	animation: yukseliste 2s infinite alternate;
}

@keyframes dususte {
	0%, 100% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(5px);
	}
}
@keyframes yukseliste {
	0%, 100% {
		transform: translateY(5px);
	}
	50% {
		transform: translateY(-5px);
	}
}
.price-row .unit {
	flex: 2;
	font-weight: 600;
	padding: 10px 0;
}
.price-row.header .unit {
	flex: 2;
	font-weight: 600;
	margin-left: 25px;
}
.price-row .unitlong {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: #bbb;
}
.price-row.header .buy, .price-row.header .sell, .price-row.header .update {
    font-family: "Marcellus";
    flex: 1;
    text-align: center;
    padding: 10px 0;
    margin: 0 5px;
}
.price-row .buy, .price-row .sell, .price-row .update {
    font-family: "Lato";
	flex: 1;
	text-align: center;
	padding: 10px 0;
	margin: 0 5px;
}
.about-us {
	max-width: 1200px;
	margin: 40px auto;
	display: flex;
	gap: 20px;
	align-items: center;
	background-color: #282c3a;
	padding: 20px;
	border-radius: 10px;
	color: #fff;
}
.about-us .content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.about-us .text {
	flex: 1;
	max-width: 50%;
}
.about-us .text h2 {
	font-size: 2em;
	margin-bottom: 20px;
}
.about-us .text p {
	font-size: 1.1em;
	line-height: 1.6;
	margin-bottom: 10px;
}
.about-us .image {
	flex: 1;
	max-width: 50%;
}
.about-us .image img {
	width: 100%;
	border-radius: 10px;
}
.why-us {
	max-width: 1200px;
	margin: 40px auto;
	border-radius: 10px;
	color: #fff;
}
.why-us .baslik {
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}
.why-us .aciklama {
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #fff;
}
.why-us .features {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.why-us .feature {
	text-align: center;
	flex: 1;
	padding: 20px;
	background-color: #212b3a;
	border-radius: 10px;
}
.why-us .feature img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid #50546F;
	margin-bottom: 20px;
	object-fit: cover;
	filter: grayscale(50%);
}
.why-us .feature span {
    display: block;
	font-size: 1.6em;
	margin-bottom: 10px;
	font-weight: bold;
}
.why-us .feature span.iletisimspan {
    display: block;
	font-size: 1em;
	margin-bottom: 10px;
	font-weight: bold;
}
.why-us .feature p {
	font-size: 1em;
	line-height: 1.6;
}
.why-us .feature p.iletisimadres {
	font-size: 1.3em;
	line-height: 1.6;
}
.why-us .feature p a.iletisimlink {
	font-size: 1.3em;
	line-height: 1.6;
	color: #fff;
	text-decoration: none;
}
.why-us .feature p a.iletisimlink:hover {
	font-size: 1em;
	line-height: 1.6;
}
.call-us {
	max-width: 1200px;
	margin: 40px auto;
	background-color: #282c3a;
	padding: 40px;
	border-radius: 10px;
	color: #fff;
}
.call-us h2 {
	margin-bottom: 30px;
}
.call-container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.left, .right {
	flex: 1;
}
.left .baslik, .right .baslik {
	font-size: 1.8em;
	margin-bottom: 20px;
	display: block;
    font-weight: bold;
}
.left p {
	font-size: 1em;
	line-height: 1.6;
	margin-bottom: 10px;
}
.left p a {
	font-size: 1em;
	text-decoration: none;
	color: #fff;
}
.map-container {
	margin-top: 20px;
	border-radius: 10px;
	overflow: hidden;
	filter: grayscale(50%);
}
.right form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.right label {
	font-size: 1em;
}
.right input, .right textarea {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #444;
	background-color: #dee5ff;
	color: #000;
	font-size: 1em;
}
.right button {
	padding: 10px;
	background-color: #1c2032;
	border: none;
	border-radius: 5px;
	font-size: 1.2em;
	color: #fff;
	cursor: pointer;
}
.right button:hover {
	background-color: #505b8d;
}

.footer {
	background-color: #212b3a;
	padding: 40px 20px;
	color: #fff;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
}

.footer-left img {
	max-width: 210px;
	height: 50px;
	margin-top: -20px;
	margin-left: 10px;
}

.footer-center p, .footer-right p {
	font-size: 1.1em;
	line-height: 1.6;
}

.footer-left, .footer-center, .footer-right {
	width: 33.33%;
}

.footer-right {
	text-align: right;
}

.footer-right p {
	margin: 0;
}

.social-media {
	margin-top: 10px;
}

.social-icon {
	color: #fff;
	font-size: 1.5em;
	margin-right: 10px;
	transition: color 0.3s ease;
	text-decoration: none;
}

.social-icon:hover {
	color: #ffcc00;
}

.social-icon i {
	display: block;
	text-align: center;
}

.footer-left {
	text-align: left;
}

.footer-left .social-media {
	max-width: 250px;
	margin: -5px auto 0 0;
	gap: 15px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

.footer-link {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-link:hover {
	color: #ffcc00;
}

.footer-link i {
	margin-right: 8px;
}

.copyright {
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 10px 20px;
	background-color: transparent;
	color: #888;
	font-size: 0.9em;
}
.copyright.crortalama {
	justify-content: center;
}
.copyright-left p {
	margin: 0;
}

.cv-exchange-rates {
	max-width: 1200px;
	margin: -200px auto 50px auto;
	background-color: #282c3a;
	padding: 20px;
	border-radius: 10px;
	z-index: 100;
	position: relative;
}
.cv-prices-container {
	display: flex;
	gap: 20px;
}
.cv-prices-container h3 {
	margin-bottom: 10px;
}

.cv-prices-table {
	height: 100%;
	overflow: hidden;
	flex: 1;
	background-color: #1b1e2a;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}
.cv-table-title {
	text-align: center;
	padding: 10px 0;
	font-size: 1.5em;
	font-weight: bold;
	background-color: #0077b6;
	color: #fff;
	margin: 0;
}
.cv-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5px;
	font-size: 1em;
	border-bottom: 1px solid #686868;
}
.cv-price-row.cv-header {
	font-weight: bold;
	background-color: #282c3a;
	padding: 10px 5px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.cv-price-row:last-child {
	border-bottom: none;
}
.cv-price-row .cv-unit {
	flex: 1;
	font-weight: 600;
	padding: 10px 0;
	margin-left: 25px;
}
.cv-price-row.header .cv-unit {
	flex: 1;
	font-weight: 600;
	margin-left: 25px;
}
.cv-price-row .cv-unitlong {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: #bbb;
}
.cv-price-row .cv-buy, .cv-sell {
    font-family: "Lato", sans-serif;
	flex: 1;
	text-align: center;
	padding: 10px 0;
	margin: 0;
}

.cv-price-row .cv-update {
	flex: 1.5;
	text-align: center;
	padding: 10px 0;
	margin: 0;
}

.cv-update-input {
	width: 100%;
	padding: 5px;
	font-size: 14px;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: center;
}

input.cv-update-input::placeholder {
	color: #000;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e3d9d9;
    margin-top: -60px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #282c3a;
    position: relative;
}

.breadcrumb a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #005177;
}

.breadcrumb span,
.breadcrumb » {
    color: #777;
}

.breadcrumb » {
    margin: 0 5px;
}

.sidebar-widget-area {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0a0e1e;
}

.sidebar-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget ul li {
    list-style-type: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget ul li a {
    display: block;
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
}

.sidebar-widget ul li a:hover {
    color: #0a0e1e;
}

.sidebar-widget ul li i {
    margin-right: 8px;
    color: #0a0e1e;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover i {
    color: #333;
}

.sidebar-widget.widget-search .form-group {
    position: relative;
    margin-top: 10px;
}

.sidebar-widget.widget-search input.form-control {
    width: 100%;
    padding: 10px 15px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-widget.widget-search input.form-control:focus {
    border-color: #0a0e1e;
    box-shadow: 0 0 6px rgba(4, 191, 141, 0.3);
    outline: none;
}

.sidebar-widget.widget-search label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #0a0e1e;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sidebar-widget.widget-search input.form-control:focus + label {
    color: #333;
}

.single-post-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-area {
    flex: 3;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #0a0e1e;
}

.post-content {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
}

.post-tags h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-list li {
    background-color: #f4f4f4;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #0a0e1e;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tags-list li:hover {
    background-color: #0a0e1e;
    color: #fff;
}

.post-comments-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.sidebar-area {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comments-area {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comments-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.comment-list li .comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-list li .comment-author img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.comment-list li .comment-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.comment-list li .comment-body {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.comment-form-wrapper {
    margin-top: 30px;
}

.comment-form-wrapper .form-group {
    margin-bottom: 20px;
}

.comment-form-wrapper label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.comment-form-wrapper .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.comment-form-wrapper textarea {
    resize: vertical;
}

.comment-form-wrapper input[type="submit"] {
    background-color: #0a0e1e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.comment-form-wrapper input[type="submit"]:hover {
    background-color: #03a374;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.comment-list .comment .comment-body {
    margin-bottom: 10px;
}

.comment-list .depth-1 {
    margin-left: 0;
}

.comment-list .depth-2 {
    margin-left: 25px;
}

.comment-list .depth-3 {
    margin-left: 50px;
}

.comment-list .depth-4 {
    margin-left: 75px;
}

.comment-list .reply a {
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.comment-list .reply a:hover {
    color: #005177;
}

.page-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.content-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.page-meta .page-date {
    margin-right: 20px;
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.category-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

.category-posts {
    flex: 1 1 75%;
    margin-right: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.category-post {
    display: flex;
    align-items: center;
    background-color: #50546F;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
}

.post-image {
    flex: 0 0 40%;
    margin-right: 20px;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 100%;
}

.post-details {
    flex: 1;
}

.category-post .post-meta {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.category-post .post-meta .post-date,
.category-post .post-meta .post-comments {
    margin-right: 20px;
}

.category-post .post-meta .post-date i,
.category-post .post-meta .post-comments i {
    color: #fff;
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.post-title a {
    text-decoration: none;
    color: #fff;
}

.post-author {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

.sidebar-area {
    flex: 0 0 25%;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.contact-info {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 24px;
    margin-right: 10px;
}

.contact-form-container {
    display: flex;
    width: 65%;
}

.contact-form {
    width: 50%;
    padding-right: 20px;
}

.contact-map {
    width: 50%;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    font-weight: bold;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    background-color: #04bf8d;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.success-message {
    color: green;
    font-weight: bold;
}

.comment-reply-title {
    color: #1b1e2a;
}

.logged-in-as {
    color: #1b1e2a;
}

.comment-notes {
    color: #1b1e2a;
}

#mesaj-gonderildi {
    position: fixed;
    height: 40px;
    top: 50px;
    right: 10px;
    line-height: 20px;
    padding: 10px;
    background-color: green;
    color: white;
    border-radius: 5px;
    transition: all 5s ease-in-out;
    z-index: 9999;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #20ad38;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: background 0.3s;
}

.whatsapp-icon:hover { background: #20b358; }
.whepsinegoster { display: flex; }
.wmasaustugoster { display: flex; }
.wmobilgoster { display: none; }

@media (max-width: 991px) {
    .wmasaustugoster { display: none; }
    .wmobilgoster { display: flex; }
}

.whatsapp-uyari {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 1002;
}

.whatsapp-container {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-hidden {
    display: none;
}

.whatsapp-chat {
    display: flex;
    flex-direction: column;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 15px;
    background-color: #095E54;
    color: #fff;
}

.whatsapp-thumb i {
    font-size: 30px;
    margin-right: 10px;
    color: #F0F0F0;
    padding: 5px 0;
}

.whatsapp-thumb img {
    background-color: #F0F0F0;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    object-position: center;
}

.whatsapp-headname {
    flex-grow: 1;
    padding-top: 2px;
    font-size: 15px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.whatsapp-close {
    cursor: pointer;
    padding: 2px 10px 0 10px;
    background: rgba(255,255,255,.05);
    border-radius: 3px;
    color: #fff;
}

.whatsapp-message {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
    background-color: #F0F0F0;
}

.whatsapp-message::-webkit-scrollbar {
    width: 5px;
}

.whatsapp-message::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}

.whatsapp-bubble:nth-child(1) {
    background-color: #DCF8C6;
    padding: 10px;
    border-radius: 0 5px 5px;
    margin: 10px 0 5px 10px;
    position: relative;
}

.whatsapp-bubble:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-bottom-color: #DCF8C6;
    border-top: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 3px;
}

.whatsapp-bubble {
    background-color: #DCF8C6;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0 10px 10px;
    position: relative;
}

.whatsapp-text {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    flex-grow: 1;
    min-width: 0;
    font-size: 13px;
    color: #0a0e1e;
}

.whatsapp-reply {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 29.6px;
}

.whatsapp-reply a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #20ad38;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}

.whatsapp-durum {
    margin-top: -5px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    justify-content: flex-end;
}

.whatsapp-durum .goruldu {
    color: #25b3d3;
}

.cerez-uyari {
    display: none;
    position: fixed;
    bottom: 15px;
	left: 15px;
	right: 15px;
    background-color: rgb(0 0 0 / 95%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    z-index: 9999;
    font-size: 14px;
	text-align: center;
	line-height: 25px;
}
.cerez-uyari h3 {
    margin-top: 0;
    font-size: 16px;
}
.cerez-uyari p {
    margin-bottom: 15px;
    font-size: 14px;
}
.cerez-uyari a {
    text-decoration: underline;
}
.cerez-buton {
    background-color: #282c3a;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
	margin-left: 5px;
    cursor: pointer;
}
.cerez-buton:hover {
    background-color: #218838;
}
.cerez-buton#cerezreddet {
    background-color: #81654d;
}
.cerez-buton#cerezreddet:hover {
    background-color: #dc3545;
}
.cerez-buton-alan {
    display: flex;
    justify-content: center;
}
.cerez-kapat-buton {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.back-to-top {
  background-color: #6c7ec1;
  border-radius: 50%;
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}

.back-to-top:hover, .back-to-top:focus {
    background-color: #ffcc00;
    color: #fff;
}

@media (max-width: 1200px) {
    header {
        border-radius: unset;
    }
    
    .mobile-menu-toggle {
        all: unset;
        color: #cdcdcf;
        background-color: #282c3a;
        border: 2px solid #cdcdcf;
        border-radius: 5px;
        padding: 5px 10px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 75%);
        z-index: 999998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #282c3a;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
    }
    
    .mobile-menu.active {
        right: 0;
        width: 275px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    
    .mobile-menu .close-menu {
        align-self: flex-end;
        background: none;
        border: none;
        color: #cdcdcf;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        margin-top: 10px;
    }
    
    .mobile-logo {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .mobile-logo img {
        height: 50px;
    }
    
    .mobile-menu-items {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 10px;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-list li {
        list-style-type: none;
        padding: 10px 20px;
        border-bottom: 1px solid #444;
    }
    
    .mobile-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-list li a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 200px;
        transition: color 0.3s;
    }
    
    .mobile-menu-list li a:hover {
        color: #ffcc00;
    }
    
    .mobile-menu-list .mobile-sub-menu {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .mobile-menu-list .mobile-sub-menu li {
        padding: 5px 0;
    }
    
    .mobile-menu-list .mobile-sub-menu a {
        padding: 5px 0;
        font-size: 1rem;
        color: #ddd;
    }
    
    .mobile-menu-list .mobile-sub-menu a:hover {
        color: #ffcc00;
    }
    
    .menuikon {
        margin-right: 5px;
        font-size: 1.2em;
        vertical-align: middle;
    }
    
    .mobile-menu-list .mobile-sub-menu .menuikon {
        font-size: 1em;
    }
    
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
    }

    .mobile-buttons .btn {
    	padding: 10px 15px;
    	border: none;
    	border-radius: 5px;
    	font-size: 0.9em;
    	text-align: center;
    	color: #fff;
    	cursor: pointer;
    	text-decoration: none;
    	transition: background 0.3s ease;
    }
    
    .mobile-buttons .phone-btn {
    	background: #50546F;
    }
    
    .mobile-buttons .phone-btn:hover {
    	background: #3a406a;
    }
    
    .mobile-buttons .convert-btn {
    	background: #6b75bb;
    }
    
    .mobile-buttons .convert-btn:hover {
    	background: #2e3881;
    }
    
	.menu {
        display: none;
    }
    
    .hero {
        margin: 30px 20px 0 20px;
    }
    
    .exchange-rates {
        margin: -200px 20px 0 20px;
        padding: 10px;
    }
    
    .prices-table {
        padding: 10px;
    }
    
    .cv-price-row .cv-unit {
        margin-left: 5px;
    }
    
    .exchange-rates.kur-ekrani {
        margin: 0 15px 40px 15px!important;
    }
	
    .page-title {
        font-size: 28px;
	}
	
    .page-content {
        font-size: 16px;
	}
	
	.sidebar-area {
        flex: unset;
        width: 35%;
        margin-top: 0;
    }
	
    .sidebar-widget-area {
        padding: 15px;
	}
	
    .sidebar-widget .widget-title {
        font-size: 16px;
	}
	
    .sidebar-widget ul li a {
        font-size: 14px;
	}
	
    .sidebar-widget.widget-search input.form-control {
        font-size: 13px;
        padding: 8px 12px 8px 30px;
	}

    .single-post-container {
        padding: 15px;
	}

    .category-container {
        padding: 30px 15px;
	}
	
    .category-posts {
        flex: unset;
        width: 65%;
        margin-right: 20px;
	}

    .call-us {
        margin: 40px 20px;
        padding: 20px;
    }
    
    .left, .right {
        flex: 0 0 50%;
        width: 50%;
    }
    
    .left .baslik, .right .baslik {
        text-align: center;
    }
    
    .left p {
        text-align: center;
    }
    
    .right input, .right textarea {
        width: 90%;
    }
    
    .right button {
        width: 90%;
    }
    
    .about-us {
        margin: 40px 20px;
    }
    
    .about-us .text {
        max-width: 100%;
    }
    
    .about-us .text h2 {
        text-align: center;
    }
    
    .about-us .image {
        max-width: 100%;
    }
    
    .why-us {
        margin: 40px 20px;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .copyright-left p {
        text-align: center;
    }
    
    .copyright-right img {
        margin-top: 10px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    
    .back-to-top {
          bottom: 15px;
          right: 15px;
	}
}

@media (max-width: 991px) {
    .header-container {
        min-height: 600px;
    }
    
    header {
        border-radius: unset;
    }
    
    .mobile-menu-toggle {
        all: unset;
        color: #cdcdcf;
        background-color: #282c3a;
        border: 2px solid #cdcdcf;
        border-radius: 5px;
        padding: 5px 10px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 75%);
        z-index: 999998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #282c3a;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
    }
    
    .mobile-menu.active {
        right: 0;
        width: 275px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    
    .mobile-menu .close-menu {
        align-self: flex-end;
        background: none;
        border: none;
        color: #cdcdcf;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        margin-top: 10px;
    }
    
    .mobile-logo {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .mobile-logo img {
        height: 50px;
    }
    
    .mobile-menu-items {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 10px;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-list li {
        list-style-type: none;
        padding: 10px 20px;
        border-bottom: 1px solid #444;
    }
    
    .mobile-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-list li a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 200px;
        transition: color 0.3s;
    }
    
    .mobile-menu-list li a:hover {
        color: #ffcc00;
    }
    
    .mobile-menu-list .mobile-sub-menu {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .mobile-menu-list .mobile-sub-menu li {
        padding: 5px 0;
    }
    
    .mobile-menu-list .mobile-sub-menu a {
        padding: 5px 0;
        font-size: 1rem;
        color: #ddd;
    }
    
    .mobile-menu-list .mobile-sub-menu a:hover {
        color: #ffcc00;
    }
    
    .menuikon {
        margin-right: 5px;
        font-size: 1.2em;
        vertical-align: middle;
    }
    
    .mobile-menu-list .mobile-sub-menu .menuikon {
        font-size: 1em;
    }
    
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
    }

    .mobile-buttons .btn {
    	padding: 10px 15px;
    	border: none;
    	border-radius: 5px;
    	font-size: 0.9em;
    	text-align: center;
    	color: #fff;
    	cursor: pointer;
    	text-decoration: none;
    	transition: background 0.3s ease;
    }
    
    .mobile-buttons .phone-btn {
    	background: #50546F;
    }
    
    .mobile-buttons .phone-btn:hover {
    	background: #3a406a;
    }
    
    .mobile-buttons .convert-btn {
    	background: #6b75bb;
    }
    
    .mobile-buttons .convert-btn:hover {
    	background: #2e3881;
    }
    
	.menu {
        display: none;
    }
    
    .hero {
        margin: 30px 20px 0 20px;
    }
    
    .hero .text {
        max-width: 100%;
    }
    
    .hero .text h1 {
        text-align: center;
    }
    
    .hero .text p {
        text-align: center;
    }
    
    .hero img {
        display: none;
    }
    
    .exchange-rates {
        margin: -200px 20px 0 20px;
        padding: 10px;
    }
    
    .prices-table {
        padding: 10px;
    }
    
    .price-row .update {
        display: none;
    }
    
    .cv-price-row .cv-unit {
        margin-left: 5px;
    }
    
    .exchange-rates.kur-ekrani {
        margin: 0 15px 40px 15px!important;
    }
	
    .page-title {
        font-size: 28px;
	}
	
    .page-content {
        font-size: 16px;
	}
	
    .sidebar-widget-area {
        padding: 15px;
	}
	
    .sidebar-widget .widget-title {
        font-size: 16px;
	}
	
    .sidebar-widget ul li a {
        font-size: 14px;
	}
	
    .sidebar-widget.widget-search input.form-control {
        font-size: 13px;
        padding: 8px 12px 8px 30px;
	}

    .single-post-container {
        padding: 15px;
	}

    .category-container {
        padding: 30px 15px;
	}
	
    .category-posts {
        flex: unset;
        width: 65%;
        margin-right: 20px;
	}

    .call-us {
        margin: 40px 20px;
        padding: 20px;
    }
    
    .left, .right {
        flex: 0 0 50%;
        width: 50%;
    }
    
    .left .baslik, .right .baslik {
        text-align: center;
    }
    
    .left p {
        text-align: center;
    }
    
    .right input, .right textarea {
        width: 90%;
    }
    
    .right button {
        width: 90%;
    }
    
    .about-us {
        margin: 40px 20px;
    }
    
    .about-us .text {
        max-width: 100%;
    }
    
    .about-us .text h2 {
        text-align: center;
    }
    
    .about-us .image {
        max-width: 100%;
    }
    
    .why-us {
        margin: 40px 20px;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .copyright {
        justify-content: center;
        flex-direction: column;
    }
    
    .copyright-left p {
        text-align: center;
    }
    
    .copyright-right img {
        margin-top: 10px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    
    .back-to-top {
          bottom: 15px;
          right: 15px;
	}
}

@media (max-width: 768px) {
    .header-container {
        min-height: 700px;
    }
    
    header {
        border-radius: unset;
    }
    
    .mobile-menu-toggle {
        all: unset;
        color: #cdcdcf;
        background-color: #282c3a;
        border: 2px solid #cdcdcf;
        border-radius: 5px;
        padding: 5px 10px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 75%);
        z-index: 999998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #282c3a;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
    }
    
    .mobile-menu.active {
        right: 0;
        width: 275px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    
    .mobile-menu .close-menu {
        align-self: flex-end;
        background: none;
        border: none;
        color: #cdcdcf;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        margin-top: 10px;
    }
    
    .mobile-logo {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .mobile-logo img {
        height: 50px;
    }
    
    .mobile-menu-items {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 10px;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-list li {
        list-style-type: none;
        padding: 10px 20px;
        border-bottom: 1px solid #444;
    }
    
    .mobile-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-list li a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 200px;
        transition: color 0.3s;
    }
    
    .mobile-menu-list li a:hover {
        color: #ffcc00;
    }
    
    .mobile-menu-list .mobile-sub-menu {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .mobile-menu-list .mobile-sub-menu li {
        padding: 5px 0;
    }
    
    .mobile-menu-list .mobile-sub-menu a {
        padding: 5px 0;
        font-size: 1rem;
        color: #ddd;
    }
    
    .mobile-menu-list .mobile-sub-menu a:hover {
        color: #ffcc00;
    }
    
    .menuikon {
        margin-right: 5px;
        font-size: 1.2em;
        vertical-align: middle;
    }
    
    .mobile-menu-list .mobile-sub-menu .menuikon {
        font-size: 1em;
    }
    
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
    }

    .mobile-buttons .btn {
    	padding: 10px 15px;
    	border: none;
    	border-radius: 5px;
    	font-size: 0.9em;
    	text-align: center;
    	color: #fff;
    	cursor: pointer;
    	text-decoration: none;
    	transition: background 0.3s ease;
    }
    
    .mobile-buttons .phone-btn {
    	background: #50546F;
    }
    
    .mobile-buttons .phone-btn:hover {
    	background: #3a406a;
    }
    
    .mobile-buttons .convert-btn {
    	background: #6b75bb;
    }
    
    .mobile-buttons .convert-btn:hover {
    	background: #2e3881;
    }
    
	.menu {
        display: none;
    }
    
    .phone .btn {
        display: none;
    }
    
    .hero {
        margin: 30px 20px 0 20px;
    }
    
    .hero .text {
        max-width: 100%;
    }
    
    .hero .text h1 {
        text-align: center;
    }
    
    .hero .text p {
        text-align: center;
    }
    
    .hero img {
        display: none;
    }
    
    .exchange-rates {
        margin: -200px 20px 0 20px;
        padding: 10px;
    }
    
    .prices-container {
        flex-direction: column;
    }
    
    .prices-table {
        padding: 10px;
    }
    
    .price-row .update {
        display: none;
    }
    
    .cv-price-row .cv-unit {
        margin-left: 5px;
    }
    
    .exchange-rates.kur-ekrani {
        margin: 0 15px 40px 15px!important;
    }
	
    .page-title {
        font-size: 28px;
	}
	
    .page-content {
        font-size: 16px;
	}
	
	.sidebar-area {
        flex: unset;
        width: 100%;
    }
	
    .sidebar-widget-area {
        padding: 15px;
	}
	
    .sidebar-widget .widget-title {
        font-size: 16px;
	}
	
    .sidebar-widget ul li a {
        font-size: 14px;
	}
	
    .sidebar-widget.widget-search input.form-control {
        font-size: 13px;
        padding: 8px 12px 8px 30px;
	}

    .single-post-container {
        flex-direction: column;
        padding: 15px;
	}
	
    .sidebar-area {
        margin-top: 20px;
	}

    .category-container {
        flex-direction: column;
        padding: 30px 15px;
	}
	
    .category-posts {
        flex: unset;
        width: 100%;
        margin-right: 0;
	}
	
	.call-container {
        flex-direction: column;
    }
    
    .call-us {
        margin: 40px 20px;
        padding: 20px;
    }
    
    .left, .right {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .left .baslik, .right .baslik {
        text-align: center;
    }
    
    .left p {
        text-align: center;
    }
    
    .right input, .right textarea {
        width: 100%;
    }
    
    .right button {
        width: 100%;
    }
    
    .about-us {
        margin: 40px 20px;
    }
    
    .about-us .content {
        flex-direction: column;
    }
    
    .about-us .text {
        max-width: 100%;
    }
    
    .about-us .text h2 {
        text-align: center;
    }
    
    .about-us .image {
        max-width: 100%;
    }
    
    .why-us {
        margin: 40px 20px;
    }
    
    .why-us .features {
        flex-direction: column;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .copyright {
        justify-content: center;
        flex-direction: column;
    }
    
    .copyright-left p {
        text-align: center;
    }
    
    .copyright-right img {
        margin-top: 10px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    
    .back-to-top {
          bottom: 15px;
          right: 15px;
        }
}
