        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
        }

        .weather-section {
            width: 100%;
            padding: 2rem 1rem;
            background: linear-gradient(to bottom, #ffffff, #f1f5f9);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 42rem;
            margin: 0 auto;
        }

        .weather-card {
            max-width: 56rem;
            margin: 0 auto;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            overflow: hidden;
        }

        .card-header {
            background: linear-gradient(to right, #3b82f6, #2563eb);
            padding: 1.5rem;
            color: white;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .header-left i {
            font-size: 1.5rem;
        }

        .header-left h3 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .header-left p {
            font-size: 0.875rem;
            color: #dbeafe;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-right i {
            font-size: 1.25rem;
        }

        .header-right span {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .search-section {
            padding: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .search-form {
            display: flex;
            gap: 0.75rem;
        }

        .search-input-container {
            flex: 1;
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .search-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .clear-button {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #9ca3af;
            cursor: pointer;
        }

        .search-button {
            padding: 0.75rem 1.5rem;
            background-color: #2563eb;
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .search-button:hover {
            background-color: #1d4ed8;
        }

        .search-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .featured-destinations {
            margin-top: 1rem;
        }

        .featured-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }

        .featured-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .featured-button {
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            border-radius: 9999px;
            border: 1px solid #d1d5db;
            background-color: #f9fafb;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s;
        }

        .featured-button:hover {
            background-color: #e5e7eb;
        }

        .featured-button.active {
            background-color: #2563eb;
            color: white;
            border-color: #2563eb;
        }

        .card-content {
            padding: 1.5rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .weather-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .location-info h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .location-name {
            font-size: 1.125rem;
            color: #2563eb;
            font-weight: 500;
        }

        .weather-display {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .weather-icon {
            width: 4rem;
            height: 4rem;
        }

        .temperature {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1f2937;
        }

        .weather-description {
            color: #6b7280;
            text-transform: capitalize;
        }

        .weather-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .weather-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .fact-box {
            background: linear-gradient(to bottom right, #fefce8, #ffedd5);
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid #fcd34d;
        }

        .fact-header {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .fact-icon {
            font-size: 1.5rem;
        }

        .fact-title {
            font-weight: 600;
            color: #1f2937;
        }

        .fact-content {
            color: #4b5563;
            line-height: 1.6;
        }

        .search-results {
            margin-top: 0.5rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            max-height: 15rem;
            overflow-y: auto;
            z-index: 10;
        }

        .search-result-item {
            width: 100%;
            text-align: left;
            padding: 0.5rem 1rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .search-result-item:hover {
            background-color: rgba(37, 99, 235, 0.1);
        }

        .loading {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #6b7280;
        }

        .spinner {
            width: 1.5rem;
            height: 1.5rem;
            border: 2px solid transparent;
            border-top: 2px solid #2563eb;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .error-message {
            color: #dc2626;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #fef2f2;
            padding: 1rem;
            border-radius: 0.5rem;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }