 :root {
            --primary: #E63946;
            --primary-dark: #C1121F;
            --secondary: #1D3557;
            --accent: #457B9D;
            --light: #F1FAEE;
            --gray: #A8DADC;
            --dark: #1A1A2E;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            animation: fadeIn 1s ease-out;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(225, 57, 70, 0.3);
            position: relative;
            overflow: hidden;
            margin: 30px 0;
            border: none;
            cursor: pointer;
        }

        .back-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(225, 57, 70, 0.4);
            background-color: var(--primary-dark);
        }

        .back-button:hover::before {
            left: 100%;
        }

        section {
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--primary);
        }

        section:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 700;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 4px;
        }

        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: var(--dark);
        }

        .title {
            color:#F1FAEE;
        }

        ul {
            list-style-type: none;
        }

        li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
        }

        li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 12px;
            background-color: var(--primary);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        li strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .image-container {
            margin: 50px auto;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            max-width: 600px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }

        .image-container:hover {
            transform: scale(1.02);
        }

        .crane-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        .image-caption {
            background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            padding: 20px;
            text-align: center;
            font-style: italic;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-container:hover .image-caption {
            opacity: 1;
        }

        footer {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            padding: 50px 0;
            text-align: center;
            margin-top: 80px;
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

         .footer-text {
        margin-top: 30px;
        opacity: 0.8;
        color: rgb(202, 197, 197);
        font-size: 16px;
        text-align: center;
        }

        @media (max-width: 600px) {
        .footer-text {
            font-size: 14px;
            padding: 10px;   
        }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2.2rem;
            }
            
            section {
                padding: 30px;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .back-button {
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 1.8rem;
            }
            
            section {
                padding: 20px;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            li {
                padding-left: 25px;
                font-size: 1rem;
            }
        }