@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

        :root {
          --bg-color: #f8f9fa;
          --primary: rgba(32, 77, 47, 1);
          --secondary: rgb(230, 182, 53);
          --Neutral-Accent: #64748b;
          --Accent-color: rgba(230, 182, 53, 0.8);
          --light-accent: #e2e8f0;
          --font: "Inter", sans-serif; /* Changed serif to sans-serif for Inter */
          --logo-font: "Bebas Neue", sans-serif;
          --transition: all 0.3s ease;
          --shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
          --radius: 10px;
        }

        /* 1. Universal Reset for predictable sizing */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 2. Body Layout */
        body {
            background-color: var(--bg-color);
            font-family: var(--font);
            padding: 40px 8%;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centers the whole page perfectly */
            min-height: 100vh;
        }

        /* 3. Header Styling */
        header {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
        }

        header h2 {
            color: var(--primary);
            font-size: 2.5rem;
            font-family: var(--logo-font);
            letter-spacing: 1.5px;
        }

        /* 4. Container Configuration */
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            width: 100%;
            max-width: 1100px;
            margin-bottom: 50px;
        }

        /* 5. Card Styling */
        .card {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px 20px;
            text-align: center;
            width: 100%;
            max-width: 300px;
            transition: var(--transition);
            display: flex;
            flex-direction: column; /* Allows internal pushing */
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(32, 77, 47, 0.15); /* Switched shadow color to brand green on hover */
        }

        .card h3 {
            color: var(--Neutral-Accent);
            font-size: 1.2rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .card p {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .card button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            margin-top: auto; /* Keeps buttons aligned at bottom even if titles wrap to 2 lines */
        }

        .card button:hover {
            background-color: var(--secondary);
            color: #111; /* Dark text for readability on the gold button */
        }

        /* 6. Back Button Styling */
        .back {
            display: inline-block;
            text-decoration: none;
            color: var(--Neutral-Accent);
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 28px;
            border: 2px solid var(--light-accent);
            border-radius: var(--radius);
            transition: var(--transition);
            background-color: transparent;
        }

        .back:hover {
            background-color: var(--light-accent);
            color: var(--primary);
        }

        /* 7. Mobile Responsiveness */
        @media (max-width: 768px) {
            body {
                padding: 30px 20px;
            }

            header h2 {
                font-size: 2rem;
            }

            .card {
                max-width: 100%; /* Lets cards take full screen width on phones */
                padding: 25px 20px;
            }
        }