:root {
        --primary-color: #1a3a5a; /* Dark Blue */
        --secondary-color: #4a6fa5; /* Lighter Blue */
        --accent-color: #e0e6ed; /* Light Grey-Blue */
        --text-color: #333333;
        --light-bg: #f8f9fa;
        --white: #ffffff;
      }

      body {
        font-family: 'Open Sans', sans-serif;
        color: var(--text-color);
        background-color: var(--white);
        line-height: 1.8;
        margin: 0;
        padding: 0;
        max-width: 100%; /* Override default body constraint */
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: 'Montserrat', sans-serif;
        color: var(--primary-color);
        font-weight: 600;
      }

      /* Hero Section */
      .hero {
		  background-color: var(--primary-color);
		  color: var(--white);
		  padding: 0;
		  margin-bottom: 0;
		}

		.hero-inner{
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  gap: 24px;            /* ettől lesz közelebb */
		  max-width: 1100px;    /* ne legyen full széles */
		  margin: 0 auto;       /* középre */
		  padding: 40px 20px;
		}

		.hero-image {
		  flex: 0 0 auto;
		  height: 300px;
		  display: flex;
		  justify-content: flex-end; /* <<< JOBBRA IGAZÍTÁS */
		  align-items: center;
		}

		/* MAGA A KÉP – FIX MÉRET */
		.hero-image img {
		  width: 220px;
		  height: 300px;
		  object-fit: cover;
		  object-position: center top;
		  border-radius: 12px;
		  display: block;
		}

		.hero-text{
		  flex: 0 1 auto;       /* ne töltse ki a maradékot */
		  max-width: none;      /* ha volt korábban max-width */
		  text-align: left;
		}

		.hero-text h1 {
		  color: var(--white);
		  font-size: 3rem;
		  margin: 0;
		}
		
		.hero-text h2 {
		  color: var(--white);
		  font-size: 2rem;
		  margin: 0;
		  text-align: center;
		}

		.hero-subtitle {
		  text-align: center;
		  padding: 20px;
		  font-size: 1.2rem;
		  font-weight: 300;
		  opacity: 0.9;
		  background-color: var(--primary-color);
		  margin: 0;
		  color: var(--white);
		}
		
		.hero-work {
		  text-align: center;
		  padding: 10px 5px 5px 5px;
		  font-size: 0.8rem;
		  font-weight: 200;
		  opacity: 0.9;
		  background-color: var(--primary-color);
		  margin: 0;
		  color: var(--white);
		}


      .hero h1 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 10px;
      }

      

      .profile-img-container {
        width: 180px;
        height: 180px;
        margin: 0 auto 30px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid rgba(255, 255, 255, 0.2);
        background-color: #ccc; /* Placeholder color */
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .profile-placeholder {
        font-size: 0.9rem;
        color: #555;
        background-color: #eee;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      /* Content Sections */
      .section {
        padding: 60px 20px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 50px;
        position: relative;
        padding-bottom: 15px;
      }

      .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--secondary-color);
      }

      /* Mission Section */
      .bg-light {
        background-color: var(--light-bg);
      }

      .mission-box {
        background: var(--white);
        padding: 40px;
        border-left: 5px solid var(--secondary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 4px;
      }

      .mission-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
      }

      .mission-list li {
        padding: 10px 0;
        padding-left: 25px;
        position: relative;
      }

      .mission-list li::before {
        
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 1.5em;
        position: absolute;
        left: 0;
        top: 2px;
      }

      .quote {
        font-style: italic;
        color: var(--primary-color);
        font-weight: 600;
      }

      /* Grid Layouts */
      .grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
      }

      @media (min-width: 768px) {
		  .grid-2 { grid-template-columns: 1fr 1fr; }
		  .hero h1 { font-size: 3.5rem; }
		}

		/* mobil: itt legyen egymás alatt */
		@media (max-width: 768px) {
		  .hero-inner { flex-direction: column; }
		  .hero-image { height: 300px; }
		  .hero-text { text-align: center; }
		}

	  
	

      /* Competencies */
      .competency-card {
        background: var(--white);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease;
        height: 100%;
        border-top: 3px solid transparent;
      }

      .competency-card:hover {
        transform: translateY(-5px);
        border-top: 3px solid var(--secondary-color);
      }

      .competency-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--secondary-color);
      }

      /* Nomad Section */
      .nomad-text p {
        margin-bottom: 20px;
      }

      /* Contact Section */
      .contact-section {
        background-color: var(--primary-color);
        color: var(--white);
        text-align: center;
      }

      .contact-section h2 {
        color: var(--white);
      }

      .contact-section .section-title::after {
        background-color: rgba(255, 255, 255, 0.3);
      }

      .contact-links {
        margin-top: 30px;
        font-size: 1.2rem;
      }

      .contact-links a {
        color: var(--white);
        text-decoration: none;
        display: block;
        margin: 10px 0;
        transition: opacity 0.3s;
      }

      .contact-links a:hover {
        opacity: 0.8;
        text-decoration: underline;
      }

      /* Smooth Scroll */
      html {
        scroll-behavior: smooth;
      }

      /* Navigation (Simple) */
      nav {
		display: flex;
		justify-content: center;
        background: var(--white);
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
		width: fit-content; 
      }

      nav li {
        margin: 0 10px;
      }

      nav a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      nav a:hover {
        color: var(--secondary-color);
      }