 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #D0662F 0%, #B5441A 50%, #8B2F0F 100%);
            min-height: 100vh;
            color: #333;
        }

        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(208, 102, 47, 0.3);
            height: 80px;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            z-index: 30;
            display: flex;
            align-items: center;
            border-radius: 0 0 20px 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
        }

        .nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #D0662F;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 25px;
            border: 2px solid transparent;
        }

        .nav a:hover {
            background: linear-gradient(45deg, #D0662F, #B5441A);
            color: white;
            border-color: #D0662F;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(208, 102, 47, 0.4);
        }

        /* Main Content */
        .main {
            max-width: 1920px;
            margin: 0 auto;
            min-height: 400px;
            padding-top: 100px;
        }

        .page-container {
            max-width: 570px;
            margin: 0 auto;
            padding: 20px;
        }

        .content-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(208, 102, 47, 0.25);
            border: 1px solid rgba(208, 102, 47, 0.3);
            transition: all 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(208, 102, 47, 0.35);
        }

        /* Logo */
        .logo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin: 0 auto 30px;
            border: 4px solid #D0662F;
            box-shadow: 0 8px 25px rgba(208, 102, 47, 0.4);
        }

        /* Typography */
        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #D0662F;
            margin-bottom: 20px;
            text-align: center;
        }

        .subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: #D0662F;
            margin-bottom: 15px;
        }

        .about-text {
            line-height: 1.6;
            color: #555;
            font-size: 14px;
            text-align: justify;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #D0662F, #B5441A);
            border-radius: 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(208, 102, 47, 0.4);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(208, 102, 47, 0.6);
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(208, 102, 47, 0.1);
            border-radius: 10px;
            border-left: 4px solid #D0662F;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(208, 102, 47, 0.2);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            fill: #D0662F;
            flex-shrink: 0;
        }

        .contact-text {
            font-size: 14px;
            font-weight: 500;
            color: #555;
        }

        /* Payment and Delivery Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(208, 102, 47, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(208, 102, 47, 0.3);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: rgba(208, 102, 47, 0.2);
            transform: scale(1.02);
        }

        .info-icon {
            width: 20px;
            height: 20px;
            fill: #D0662F;
            flex-shrink: 0;
        }

        .info-text {
            font-size: 14px;
            font-weight: 500;
            color: #555;
        }

        /* Footer */
        .footer {
            margin: 40px auto 0;
            max-width: 240px;
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(208, 102, 47, 0.25);
        }

        .footer-address {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .footer-company {
            font-size: 10px;
            color: #888;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 20px;
            }

            .page-container {
                padding: 15px;
            }

            .content-section {
                padding: 20px;
            }

            .section-title {
                font-size: 1.25rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 64px;
            }

            .main {
                padding-top: 80px;
            }

            .nav a {
                padding: 8px 15px;
                font-size: 14px;
            }

            .content-section {
                padding: 15px;
                border-radius: 15px;
            }

            .logo {
                width: 80px;
                height: 80px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .content-section:nth-child(2) { animation-delay: 0.1s; }
        .content-section:nth-child(3) { animation-delay: 0.2s; }
        .content-section:nth-child(4) { animation-delay: 0.3s; }
        .content-section:nth-child(5) { animation-delay: 0.4s; }