﻿
/* About */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 80px 0;
}

.contact-card, .working-hours {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .contact-card h2, .working-hours h2, .map-container h2 {
        color: var(--secondary-color);;
        margin-bottom: 20px;
        font-size: 1.4em;
        font-weight: bold;
    }

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item strong {
        color: #666;
        margin-right: 25px;
        min-width: 70px;
        font-size: 1em;
        text-align: right;
    }

    .contact-item span {
        color: #333;
        transition: all .4s ease;
    }
        .contact-item span:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

.map-container {
    grid-column: 1 / -1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 600px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1em;
    text-align: center;
    border: 1px solid #e9ecef;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
    height: 80%;
}

.hours-item {
    text-align: center;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 6px;
    color: #666;
}
    .hours-item:hover {
        background-color: #bbe1ff;
    }
    .hours-item strong {
        color: var(--secondary-color);
        display: block;
        font-size: 1em;
    }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        margin: 40px 5px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .contact-card {
        padding: 20px;
    }

    .container {
        padding: 20px 15px;
    }
}

.footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    color: #666;
    font-size: 0.9em;
}

.phone-link {
    color: var(--secondary-color);;
    text-decoration: none;
    cursor: pointer;
}

    .phone-link:hover {
        text-decoration: underline;
    }

/* Statement*/
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 80px 0;
}
.content-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

    .content-section h2 {
        color: #4a90e2;
        margin-bottom: 20px;
        font-size: 1.4em;
        font-weight: bold;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .content-section h3 {
        color: #666;
        margin: 15px 0 10px 0;
        font-size: 1.1em;
        font-weight: bold;
    }

    .content-section p {
        color: #555;
        text-align: justify;
    }

    .content-section ul {
        margin: 15px 0;
        padding-left: 20px;
    }

    .content-section li {
        margin-bottom: 8px;
        color: #555;
    }

.highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 3px solid #fba05f;
}

.contact-info {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

    .contact-info h3 {
        color: #4a90e2;
        margin-bottom: 15px;
        font-size: 1.2em;
        font-weight: bold;
    }

    .contact-info p {
        margin-bottom: 10px;
        color: #666;
    }

.phone-link {
    color: #4a90e2;
    text-decoration: none;
}

    .phone-link:hover {
        text-decoration: underline;
    }

.footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    color: #666;
    font-size: 0.9em;
}

.update-date {
    color: #999;
    font-size: 0.9em;
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 25px 20px;
    }
}