/* ===== GENEL CONTAINER ===== */
.container {
    max-width: 1300px;
    margin: 0 auto !important;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #d35400;
}

.breadcrumb-nav .separator {
    color: #7f8c8d;
    margin: 0 8px;
}

.breadcrumb-nav .current {
    color: #bdc3c7;
}

/* ===== PAGE LAYOUT ===== */
.calc-page {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* ===== CALCULATOR WIDGET ===== */
.calculator-widget {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.calculator-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 3px solid #e67e22;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left i {
    font-size: 24px;
    color: white;
}

.header-left h2 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.header-right {
    display: flex;
    gap: 15px;
}

.rate-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.rate-badge.buy {
    border: 2px solid rgba(46, 204, 113, 0.5);
}

.rate-badge.sell {
    border: 2px solid rgba(231, 76, 60, 0.5);
}

.rate-label {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.rate-value {
    font-size: 16px;
    color: white;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.calculator-body {
    padding: 30px;
}

.calc-input-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(230, 126, 34, 0.05);
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.calc-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    outline: none;
    font-family: 'Courier New', monospace;
}

.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-currency {
    color: #e67e22;
    font-size: 18px;
    font-weight: 700;
    margin-left: 10px;
}

.currency-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.switch-btn {
    padding: 15px 25px;
    background: rgba(230, 126, 34, 0.1);
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 12px;
    color: #bdc3c7;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.switch-btn:hover {
    background: rgba(230, 126, 34, 0.2);
    border-color: #e67e22;
}

.switch-btn.active {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.calc-result-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.result-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.result-value {
    font-size: 48px;
    font-weight: 800;
    color: #e67e22;
    font-family: 'Courier New', monospace;
}

.result-currency {
    font-size: 28px;
    font-weight: 700;
    color: #bdc3c7;
}

.result-meta {
    color: #7f8c8d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.calculate-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculate-button:hover {
    background: linear-gradient(135deg, #d35400, #c44d00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.calculate-button i {
    font-size: 20px;
}

/* ===== ARTICLE CONTENT ===== */
.content-article {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.article-header h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #7f8c8d;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    margin-bottom: 25px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #e67e22;
}

/* Güncelleme: Paragraf rengi hafif gri tonu (#d1d5db) - daha rahat okunabilir */
.article-content p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-content ul {
    color: #d1d5db;
    margin: 20px 0;
    padding-left: 25px;
}

.article-content ul li {
    /* Güncelleme: Boyut paragraf gibi 16px, daha okunabilir */
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db;
    background: rgba(230, 126, 34, 0.05);
    padding: 20px;
    border-left: 4px solid #e67e22;
    border-radius: 8px;
    margin-bottom: 30px;
}

.lead-text strong {
    color: #e67e22;
}

.article-content h2 {
    color: #e67e22;
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-content h2 i {
    font-size: 24px;
}

.rate-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.rate-card {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
    border-color: #e67e22;
}

.rate-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.buy-card .rate-card-header {
    color: #2ecc71;
}

.sell-card .rate-card-header {
    color: #e74c3c;
}

.rate-card-value {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.rate-card-value span {
    font-size: 20px;
    color: #7f8c8d;
}

.rate-card-desc {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.rate-card-calc {
    font-size: 14px;
    color: #d1d5db;
    margin: 10px 0 0 0;
    line-height: 1.4;
}

.calculation-table {
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdc3c7;
    font-size: 16px;
    font-weight: 600;
}

.calc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.buy-icon {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.sell-icon {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.calc-value {
    font-size: 24px;
    font-weight: 800;
    color: #e67e22;
    font-family: 'Courier New', monospace;
}

.calc-currency {
    font-size: 16px;
    color: #7f8c8d;
    margin-left: 5px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.underlined-title {
    color: #e67e22;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
    padding-bottom: 10px;
}

.highlight-para {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.75;
    margin: 10px 0 0 0;
    text-align: left;
    hyphens: auto;
    word-spacing: 0.1em;
    word-break: break-word;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.info-box .highlight {
    color: #e67e22;
    font-weight: 700;
}

.warning-box,
.suggestion-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.warning-box {
    background: rgba(241, 196, 15, 0.1);
    border: 2px solid rgba(241, 196, 15, 0.3);
}

.warning-box i {
    color: #f1c40f;
    font-size: 24px;
    flex-shrink: 0;
}

.warning-box div {
    /* Güncelleme: Hafif gri tonu */
    color: #d1d5db;
}

.suggestion-box {
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.suggestion-box i {
    color: #2ecc71;
    font-size: 24px;
    flex-shrink: 0;
}

.suggestion-box div {
    /* Güncelleme: Hafif gri tonu */
    color: #d1d5db;
}

.suggestion-box a {
    color: #2ecc71;
    text-decoration: underline;
    font-weight: 600;
}

.suggestion-box a:hover {
    color: #27ae60;
}

/* ===== PURCHASE BOXES (YENİ - Info-box style) ===== */
.purchase-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.purchase-box {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.purchase-box:hover {
    border-color: #e67e22;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.purchase-box .underlined-title {
    color: #e67e22;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
    padding-bottom: 10px;
}

.purchase-box p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 15px 0;
    text-align: left;
    hyphens: auto;
    word-spacing: 0.1em;
    word-break: break-word;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.purchase-note {
    color: #7f8c8d;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(230, 126, 34, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(230, 126, 34, 0.1);
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.faq-item h3 {
    color: #e67e22;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.faq-item p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ===== POPULAR CALCULATIONS ===== */
.popular-calcs {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: #e67e22;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.calc-card {
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.calc-card:hover {
    background: rgba(230, 126, 34, 0.1);
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.calc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calc-card-name {
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 600;
}

.calc-card-change {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.calc-card-change.up {
    color: #2ecc71;
}

.calc-card-change.down {
    color: #e74c3c;
}

.calc-card-value {
    font-size: 20px;
    font-weight: 800;
    color: #e67e22;
    font-family: 'Courier New', monospace;
}

.calc-card-value span {
    font-size: 14px;
    color: #7f8c8d;
}

/* ===== SIDEBAR ===== */
.calc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-widget .widget-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #e67e22;
    justify-content: center;
}

.sidebar-widget .widget-header i {
    color: #e67e22;
    font-size: 18px;
}

.sidebar-widget .widget-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.sidebar-widget .widget-content {
    padding: 20px;
    background: linear-gradient(135deg, #16213e 0%, #1e2738 100%);
}

.quick-calc-section {
    margin-bottom: 20px;
}

.quick-calc-title {
    color: #e67e22;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-calc-link {
    display: block;
    padding: 10px 12px;
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 8px;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-calc-link:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

.currency-switcher {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(230, 126, 34, 0.1);
}

.currency-switch-btn {
    padding: 8px 12px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 8px;
    color: #bdc3c7;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-switch-btn:hover {
    background: rgba(230, 126, 34, 0.2);
    border-color: #e67e22;
}

.currency-switch-btn.active {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.news-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Güncelleme: Haber başlığı rengi hafif gri tonu (#d1d5db) */
.news-content h4 {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-content h4 {
    color: #e67e22;
}

.news-time {
    color: #7f8c8d;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .calc-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-widget,
    .content-article,
    .popular-calcs,
    .sidebar-widget,
    .faq-section {
        width: 100%;
        max-width: 100%;
    }
    
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rate-cards,
    .info-boxes,
    .purchase-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .calculator-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .calculator-body {
        padding: 20px 15px;
    }
    
    .calc-input-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .currency-switch {
        flex-direction: row;
        gap: 8px;
        width: 100%;
    }
    
    .switch-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .calc-result-section {
        padding: 20px 15px;
    }
    
    .result-value {
        font-size: 36px;
    }
    
    .result-currency {
        font-size: 20px;
    }
    
    .content-article {
        padding: 25px 15px;
    }
    
    .faq-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    .article-header h1 {
        font-size: 24px;
    }
    
    .article-content h2 {
        font-size: 22px;
    }
    
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-calc-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-switcher {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget .widget-content {
        padding: 15px;
    }

    .purchase-box {
        padding: 20px 15px;
    }

    .purchase-box .underlined-title {
        font-size: 16px;
    }

    .purchase-box p {
        font-size: 14px;
    }

    .rate-card-desc {
        font-size: 13px;
    }

    .rate-card-calc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 12px !important;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .calc-page {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .calculator-widget,
    .content-article,
    .popular-calcs,
    .sidebar-widget,
    .faq-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .calculator-header {
        padding: 12px 15px;
    }
    
    .calculator-body {
        padding: 15px;
    }
    
    .input-wrapper {
        padding: 12px 15px;
    }
    
    .calc-input {
        font-size: 20px;
    }
    
    .switch-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .calc-result-section {
        padding: 20px 15px;
    }
    
    .result-value {
        font-size: 28px;
    }
    
    .result-currency {
        font-size: 18px;
    }
    
    .rate-card-value {
        font-size: 28px;
    }
    
    .calc-value {
        font-size: 20px;
    }
    
    .content-article {
        padding: 20px 15px;
    }
    
    .faq-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .faq-items {
        gap: 15px;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .faq-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .faq-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .purchase-boxes {
        gap: 15px;
    }

    .purchase-box {
        padding: 15px 12px;
    }

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

    .purchase-box p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .purchase-note {
        font-size: 12px;
    }

    .rate-card-desc {
        font-size: 12px;
    }

    .rate-card-calc {
        font-size: 13px;
    }
}