/* 蓄電池ページ固有のスタイル */

/* おすすめセクション用のアイコン */
.recommendation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        to top,
        var(--green-color) 0%,
        var(--primary-color) var(--progress, 0%),
        var(--primary-color) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.eco-title{
    padding: 5rem 0 2rem;
}

.recommendation-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}
.battery-over-text{
    display: flex;
    align-items: center;
}
.battery-over-text figure{
    width: 60%;
}
.battery-over-text figure img{
    width: 100%;
}
.battery-over-text p{
    width: 40%;
    padding: 0 3rem;
    font-size: 1.2rem;
}
.outage-select{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.outage-select figure{
    width: 40%;
    margin: 0;
}
.outage-select figure img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.outage-select figure img:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.outage-select figcaption{
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0 1rem;
}

/* メリットセクション */
.benefits {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.25);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.35);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* 停電対策セクション */
.power-outage-preparedness {
    padding: 5rem 0;
    background-color: white;
}

.outage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usage-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.usage-card:hover::before {
    transform: scaleX(1);
}

.usage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    border-color: var(--green-color);
}

.usage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        to top,
        var(--green-color) 0%,
        var(--primary-color) var(--progress, 0%),
        var(--primary-color) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.usage-card:hover .usage-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

.usage-icon i {
    font-size: 2.5rem;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.usage-card:hover .usage-icon i {
    transform: scale(1.1);
}

.usage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.usage-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* メインコンテンツ */
main {
    position: relative;
    padding-top: 80px; /* ヘッダーの高さ分のスペースを確保 */
}

/* サブページヒーロー */
.hero {
    position: relative;
    width: 100%;
}

.hero-sub {
    height: 60vh;
    min-height: 400px;
    margin-top: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero004.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 蓄電池タイプ比較セクション */
.battery-types {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.type-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.type-badge {
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.type-badge.economic {
    background-color: rgba(16, 185, 129, 0.3);
}

.type-content {
    padding: 2rem;
}

.type-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.type-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.type-features li:last-child {
    border-bottom: none;
}

.type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.type-specs {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.type-specs p {
    margin: 0;
    color: var(--text-dark);
}

.type-specs strong {
    color: var(--primary-color);
}

/* 導入事例セクション */
.case-studies {
    padding: 5rem 0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.case-type {
    background-color: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.case-content {
    padding: 1.5rem;
}

.case-spec p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.case-spec strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.case-comment {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .battery-over-text{
        flex-direction: column;
    }
    .battery-over-text figure{
        width: 100%;
    }
    .battery-over-text p{
        width: 100%;
        padding: 2rem 1rem;
    }
    .section-subtitle{
        padding: 0 1rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        padding: 2.5rem 1.5rem;
    }

    .outage-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .usage-card {
        padding: 2rem 1.5rem;
    }

    .outage-select {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .outage-select figure {
        width: 70%;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .type-content {
        padding: 1.5rem;
    }

    .type-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .case-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .disaster-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .disaster-info-flex {
        flex-direction: column;
        gap: 0;
        grid-column: 1;
        margin-bottom: 2rem;
        border-radius: 0.75rem;
    }

    .disaster-text {
        width: 100%;
        flex: 0 0 auto;
        padding: 2rem;
    }

    .disaster-image {
        width: 100%;
        flex: 0 0 auto;
    }

    .comparison-item,
    .comparison-label,
    .comparison-value {
        padding: 1rem;
    }

    .environment-flex {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .environment-image {
        width: 100%;
        flex: 0 0 100%;
        border-radius: 0.75rem;
    }

    .environment-benefits {
        width: 100%;
        flex: 0 0 100%;
        padding: 2rem;
    }

    .environment-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }

    .hero-sub {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 60px;
    }

    .hero-sub {
        min-height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    .power-outage-preparedness {
        padding: 3rem 0;
    }

    .outage-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .usage-card {
        padding: 2rem 1.5rem;
    }

    .usage-icon {
        width: 70px;
        height: 70px;
    }

    .usage-icon i {
        font-size: 2rem;
    }

    .usage-card h3 {
        font-size: 1.25rem;
    }

    .usage-card p {
        font-size: 0.95rem;
    }

    .outage-select {
        gap: 2rem;
    }

    .outage-select figure {
        width: 100%;
    }

    .outage-select figcaption {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .battery-types {
        padding: 3rem 0;
    }

    .case-studies {
        padding: 3rem 0;
    }

    .type-header h3 {
        font-size: 1.25rem;
    }

    .type-content {
        padding: 1.25rem;
    }

    .type-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .recommendation-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .environment-stats {
        grid-template-columns: 1fr;
    }

    .environment-flex {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .environment-image {
        border-radius: 0.5rem;
    }

    .environment-benefits {
        padding: 1.5rem;
    }

    .environment-benefits h3 {
        font-size: 1.25rem;
    }

    .disaster-info-flex {
        gap: 0;
        margin-bottom: 1.5rem;
        border-radius: 0.5rem;
    }

    .disaster-text {
        padding: 1.5rem;
    }

    .disaster-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* おすすめセクション */
.recommendation {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    z-index: 1;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recommendation-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.recommendation-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.recommendation-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 作る電気 vs 買う電気セクション */
.make-vs-buy {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    z-index: 1;
}

.comparison-table {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
}

.comparison-item {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-label {
    padding: 1.5rem;
    background-color: var(--background-light);
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-value {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.buy-electricity {
    background-color: #fee2e2;
    color: #dc2626;
}

.make-electricity {
    background-color: #dcfce7;
    color: #16a34a;
}

.make-vs-buy-summary {
    text-align: center;
    margin-top: 3rem;
}

.make-vs-buy-summary p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* クリーンエネルギーセクション */
.clean-energy {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    z-index: 1;
}

.clean-energy-content {
    margin-top: 3rem;
}

.environment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        to top,
        var(--green-color) 0%,
        var(--primary-color) var(--progress, 0%),
        var(--primary-color) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    background-position: 0 0;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.environment-flex {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.environment-image {
    width: 50%;
    flex: 0 0 50%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.environment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.environment-benefits {
    width: 50%;
    flex: 0 0 50%;
    background: var(--background-light);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.environment-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* 災害対策セクション */
.disaster-preparedness {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    z-index: 1;
}

.disaster-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.disaster-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.disaster-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.disaster-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        to top,
        var(--orange-color) 0%,
        var(--accent-color) var(--progress, 0%),
        var(--accent-color) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disaster-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.disaster-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.disaster-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

.disaster-scenarios {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.disaster-scenarios h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scenario {
    padding: 1rem;
    background: var(--background-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
}

.scenario h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.scenario p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.disaster-info-flex {
    display: flex;
    align-items: stretch;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    grid-column: 1 / 3;
}

.disaster-text {
    width: 60%;
    flex: 0 0 60%;
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

.disaster-text p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.disaster-image {
    width: 40%;
    flex: 0 0 40%;
    padding: 2rem;
    max-width: 440px;
    min-width: 300px;
}

.disaster-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* 設置場所セクション */
.installation-locations {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    z-index: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        to top,
        var(--green-color) 0%,
        var(--primary-color) var(--progress, 0%),
        var(--primary-color) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.location-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.installation-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 1rem;
    text-align: center;
}

.installation-note p {
    color: var(--text-light);
    line-height: 1.6;
}

.installation-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}