 * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; } body { background-color: #f9fafb; color: #1f2937; line-height: 1.7; padding: 20px; min-height: 100vh; } .container { background-color: white; border-radius: 16px; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); padding: clamp(25px, 5vw, 50px); margin: 30px auto; border: 1px solid #e5e7eb; max-width: 1200px; width: 100%; } h1 { color: #111827; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; font-weight: 700; text-align: center; padding-bottom: 20px; border-bottom: 3px solid #3b82f6; } h2 { color: #1d4ed8; font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: clamp(30px, 5vw, 40px); margin-bottom: 20px; font-weight: 600; padding-bottom: 10px; border-bottom: 2px solid #e5e7eb; } h3 { color: #374151; font-size: clamp(1.1rem, 2vw, 1.3rem); margin-top: 25px; margin-bottom: 15px; font-weight: 600; } p { margin-bottom: 18px; font-size: clamp(1rem, 1.5vw, 1.1rem); color: #4b5563; } .shipping-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); gap: clamp(20px, 3vw, 30px); margin: 30px 0; } .shipping-card { background-color: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: clamp(20px, 3vw, 30px); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; } .shipping-card:hover { border-color: #3b82f6; box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15); transform: translateY(-5px); } .card-icon { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 15px; color: #3b82f6; } .card-title { font-weight: bold; color: #1d4ed8; margin-bottom: 15px; font-size: clamp(1.1rem, 1.8vw, 1.3rem); } .feature-list { list-style: none; margin: 15px 0; flex-grow: 1; } .feature-list li { margin-bottom: 10px; padding-left: 25px; position: relative; color: #4b5563; font-size: clamp(0.95rem, 1.3vw, 1.05rem); } .feature-list li:before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: bold; } .timeline-section { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border-radius: 12px; padding: clamp(20px, 3vw, 30px); margin: 30px 0; } .timeline-item { display: flex; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(59, 130, 246, 0.2); } .timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .timeline-marker { background-color: #3b82f6; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 15px; flex-shrink: 0; } .contact-section { text-align: center; margin-top: clamp(40px, 6vw, 50px); padding: clamp(25px, 4vw, 40px); background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%); color: white; border-radius: 12px; } .contact-button { display: inline-block; background-color: white; color: #1e40af; padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 40px); text-decoration: none; border-radius: 50px; font-weight: bold; font-size: clamp(1rem, 1.5vw, 1.1rem); margin-top: 20px; transition: all 0.3s ease; border: 2px solid white; } .contact-button:hover { background-color: transparent; color: white; } .important-note { background-color: #fffbeb; border: 1px solid #fbbf24; border-radius: 10px; padding: clamp(20px, 3vw, 25px); margin: 30px 0; } .important-title { font-weight: bold; color: #92400e; margin-bottom: 15px; display: block; font-size: clamp(1.1rem, 1.8vw, 1.2rem); } .footer { margin-top: clamp(40px, 6vw, 50px); padding-top: 25px; border-top: 1px solid #d1d5db; font-size: clamp(0.85rem, 1.2vw, 0.9rem); color: #6b7280; text-align: center; } @media (max-width: 768px) { body { padding: 15px; } .container { padding: 20px; margin: 20px auto; } .shipping-grid { grid-template-columns: 1fr; gap: 20px; } .timeline-item { flex-direction: column; } .timeline-marker { margin-bottom: 10px; margin-right: 0; } } @media (max-width: 480px) { body { padding: 10px; } .container { padding: 15px; border-radius: 12px; } .contact-section { padding: 20px; } } 