
        :root {
            --main-color: #1a4a7c;
            --accent-color: #f39c12;
            --bg-light: #f4f7f6;
            --text-dark: #2c3e50;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: linear-gradient(135deg, var(--main-color) 0%, #2980b9 100%);
            color: var(--white);
            padding: 60px 20px;
            text-align: center;
            border-bottom: 5px solid var(--accent-color);
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        header p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        .relink {
            color: var(--main-color);
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s;
        }

        .relink:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .intro-text {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: -40px auto 40px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-top: 4px solid var(--main-color);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h2 {
            color: var(--main-color);
            font-size: 1.4em;
            margin-top: 0;
            display: flex;
            align-items: center;
        }

        .service-card ul {
            padding-left: 20px;
            list-style-type: square;
        }

        .service-card li {
            margin-bottom: 8px;
        }

        .why-me {
            background: var(--main-color);
            color: var(--white);
            padding: 40px;
            border-radius: 12px;
            margin-top: 40px;
        }

        .why-me h2 {
            color: var(--accent-color);
            text-align: center;
        }

        .contact-cta {
            text-align: center;
            padding: 40px 20px;
            background: #ffffff;
            margin-top: 40px;
            border-radius: 16px;
            border: 2px solid #e0e0e0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .contact-cta::before {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto 20px auto;
            border-radius: 2px;
        }

        .contact-cta h2 {
            color: var(--main-color);
            margin-top: 0;
            font-size: 2em;
            line-height: 1.2;
        }

        .contact-cta p {
            color: #555;
            margin-bottom: 25px;
            font-size: 1.1em;
        }

        .btn-call {
            display: inline-block;
            background: var(--accent-color);
            color: var(--white);
            padding: 16px 36px;
            font-size: 1.3em;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(243, 156, 18, 0.4);
        }

        .btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(243, 156, 18, 0.5);
            background: #e67e22;
        }

        footer {
            text-align: center;
            padding: 30px;
            color: #7f8c8d;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            header h1 { font-size: 1.8em; }
            .services-grid { grid-template-columns: 1fr; }
        }
     