
        :root {
            --primary-color: #c0392b;
            --secondary-color: #FF8C00;
            --text-color: #333;
            --light-text: #666666;
            --background-color: #f9f9f9;
            --card-bg: #fff;
            --accent-bg: #f8d7da;
            --border-radius: 12px;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: 2rem 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .title-container {
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 0 1rem;
            position: relative;
        }

        h1 {
            font-size: 2.8rem;
            font-weight: bold;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
            background-image: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--light-text);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .shipping-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.8rem;
            margin: 2rem auto;
            padding: 0 1rem;
            max-width: 1200px;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 165, 0, 0.1);
        }

        .card::before {
            content: '🕷️';
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            opacity: 0.2;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }

        .card:hover::before {
            opacity: 0.8;
            transform: rotate(15deg);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            background-color: var(--primary-color);
            color: white;
            font-size: 1.8rem;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(192, 57, 43, 0.3);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .card-title::after {
            content: '';
            flex-grow: 1;
            height: 2px;
            background-color: var(--secondary-color);
            margin-left: 10px;
            opacity: 0.5;
        }

        .card-content {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.7;
        }

        .card-content p {
            margin-bottom: 1rem;
        }

        .card-content ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .card-content li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 0.5rem;
        }

        /* Remove list item bullet points */
        .card-content ul {
            list-style-type: none;
            padding-left: 0;
        }

        .card-content li::before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .highlight {
            color: var(--primary-color);
            font-weight: bold;
            position: relative;
            padding: 0 2px;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: rgba(255, 165, 0, 0.3);
            z-index: -1;
        }

        .shipping-table {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        .shipping-table h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .shipping-table h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .delivery-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .delivery-table th, .delivery-table td {
            padding: 1rem 1.2rem;
            text-align: left;
            font-size: 1rem;
        }

        .delivery-table thead {
            background-color: var(--primary-color);
            color: white;
        }

        .delivery-table tbody tr {
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: background-color 0.2s ease;
        }

        .delivery-table tbody tr:hover {
            background-color: rgba(255, 165, 0, 0.03);
        }

        .delivery-table tbody tr:last-child {
            border-bottom: none;
        }

        .faq-section {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 1rem;
        }

        .faq-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            width: 100%;
            padding: 1.2rem 1.5rem;
            text-align: left;
            background-color: var(--card-bg);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(255, 165, 0, 0.05);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .faq-answer p {
            padding: 0 0 1.5rem 0;
            color: var(--light-text);
            line-height: 1.7;
        }

        .custom-solution {
            max-width: 1200px;
            margin: 3rem auto 4rem;
            padding: 2.5rem 1rem;
            text-align: center;
            background-color: #f8d7da;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .custom-solution h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .custom-solution p {
            max-width: 700px;
            margin: 0 auto 1.8rem;
            color: var(--light-text);
            line-height: 1.7;
        }

        .contact-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.9rem 2.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 6px rgba(192, 57, 43, 0.2);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(192, 57, 43, 0.3);
            background-color: #b03020;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }

            .shipping-cards {
                grid-template-columns: 1fr;
            }

            .card {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .title-container {
                margin-bottom: 1.8rem;
            }

            h1 {
                font-size: 1.9rem;
            }

            .card {
                padding: 1.5rem;
            }
        }
    