* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.location-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    text-align: center;
}

.btn-primary {
    background: #00b894;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,184,148,0.3);
}

.btn-primary:hover {
    background: #00a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,184,148,0.4);
}

.province-selector {
    margin-top: 1.5rem;
}

.province-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.province-selector select {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.weather-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.weather-info h2 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.weather-info h2 span {
    color: #e17055;
    font-weight: bold;
}

.advice-section h3 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.advice-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #74b9ff;
    transition: transform 0.3s ease;
}

.advice-card:hover {
    transform: translateY(-3px);
}

.advice-card h4 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advice-card p {
    color: #2d3436;
    line-height: 1.6;
}

.loading, .error {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.loading p {
    color: #74b9ff;
    font-size: 1.1rem;
}

.error p {
    color: #e17055;
    font-size: 1.1rem;
}

.seo-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content h2 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.seo-content h3 {
    color: #2d3436;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.seo-content p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.seo-content strong {
    color: #2d3436;
    font-weight: 600;
}

.location-info {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.location-info p {
    margin: 0;
    color: #2d3436;
}

.location-note {
    font-size: 0.9rem;
    color: #636e72 !important;
    margin-top: 0.5rem !important;
}

.static-advice {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f2f6;
}

.temp-examples {
    margin-top: 1.5rem;
}

.temp-range {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.temp-range h4 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.temp-range p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.temp-range strong {
    color: #2d3436;
}

.temperature-info {
    text-align: center;
    margin-bottom: 2rem;
}

.temperature-info h2 {
    margin-bottom: 0.5rem;
}

.feels-like {
    font-size: 1.1rem;
    color: #636e72;
    margin: 0.5rem 0;
}

.context-type {
    font-size: 1rem;
    color: #74b9ff;
    font-weight: 600;
    margin: 0.5rem 0;
}

.weather-description {
    background: #e8f4fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3436;
}

.jacket-advice {
    margin-top: 0.8rem;
    padding: 0.6rem;
    background: #f1f2f6;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
    border-left: 3px solid #00b894;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .location-section, .weather-info {
        padding: 1.5rem;
    }
    
    .advice-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.4rem;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
    }
}
